Files
Alex Jbanca 9de2b718b3 fix: Various fixes to the build system
1. Adding AndroidManifest.xml with app icons and splash screen
2. Renaming IOS-build to Status-tablet
3. Update androiddeployqt to run on android-31
4. Adding app icons to IOS
5. Fixing makefile clean, makefile nim_status_client dependencies, makefile DOtherSide lib name
6. Update README.md with latest changes
2025-04-28 17:51:07 +02:00

26 lines
547 B
C++

#include <stdlib.h>
#include <unistd.h>
#include <qqml.h>
#include <QDir>
extern "C" {
void NimMain();
}
int main(int argc, char* argv[])
{
Q_INIT_RESOURCE(resources);
qputenv("QT_FILE_SELECTORS", "noWebEngine");
#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0)
qmlRegisterModule("Qt.labs.settings", 1, 1);
qmlRegisterModule("Qt.labs.settings", 1, 0);
qmlRegisterModuleImport("Qt.labs.settings", QQmlModuleImportModuleAny,
"QtCore", QQmlModuleImportLatest);
#endif
NimMain();
return 0;
}