22 lines
545 B
C++
22 lines
545 B
C++
#include <QCoreApplication>
|
|
#include <QGuiApplication>
|
|
#include <QObject>
|
|
#include <QQmlApplicationEngine>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
QGuiApplication app(argc, argv);
|
|
|
|
QQmlApplicationEngine engine;
|
|
|
|
// Die URL muss exakt zu dem passen, was in CMakeLists.txt unter URI steht
|
|
const QUrl url(u"qrc:/navidrome_client/Main.qml"_qs);
|
|
|
|
QObject::connect(
|
|
&engine, &QQmlApplicationEngine::objectCreationFailed, &app,
|
|
[]() { QCoreApplication::exit(-1); }, Qt::QueuedConnection);
|
|
|
|
engine.load(url);
|
|
|
|
return app.exec();
|
|
}
|