File: main.cpp

package info (click to toggle)
quickflux 1.1.3%2Bgit20201110.2a37acf-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,036 kB
  • sloc: cpp: 2,874; makefile: 26
file content (17 lines) | stat: -rw-r--r-- 428 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QuickFlux>

int main(int argc, char *argv[])
{
    QGuiApplication app(argc, argv);

    // It is needed only if you link QuickFlux from cmake via libquickflux.a. Build with qpm/quickflux.pri is not needed.
    registerQuickFluxQmlTypes();

    QQmlApplicationEngine engine;
    engine.load(QUrl(QStringLiteral("qrc:/main.qml")));

    return app.exec();
}