Initial commit (new git name)

This commit is contained in:
Niels
2025-07-14 17:08:05 +02:00
commit 5c111601d7
338 changed files with 28160 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifdef QT_QML_DEBUG
#include <QtQuick>
#endif
#include <sailfishapp.h>
#include <QGuiApplication>
int main(int argc, char *argv[])
{
// SailfishApp::main() will display "qml/harbour-allradio2.qml", if you need more
// control over initialization, you can use:
//
// - SailfishApp::application(int, char *[]) to get the QGuiApplication *
// - SailfishApp::createView() to get a new QQuickView * instance
// - SailfishApp::pathTo(QString) to get a QUrl to a resource file
// - SailfishApp::pathToMainQml() to get a QUrl to the main QML file
//
// To display the view, call "show()" (will show fullscreen on device).
QScopedPointer<QGuiApplication> app(SailfishApp::application(argc,argv));
app->setApplicationVersion(QString(APP_VERSION));
return SailfishApp::main(argc, argv);
}