qt6-bb10/qtdeclarative/tests/auto/qml/qqmlapplicationengine/testapp/main.cpp

13 lines
338 B
C++

// Copyright (C) 2016 Research In Motion.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QCoreApplication>
#include <QQmlApplicationEngine>
int main (int argc, char *argv[])
{
QCoreApplication app(argc, argv);
QQmlApplicationEngine e(QUrl(QString("qrc:///") + argv[1]));
return app.exec();
}