mirror of
https://github.com/thp/pyotherside.git
synced 2025-02-05 08:08:23 +08:00
13 lines
251 B
C++
13 lines
251 B
C++
#include <QGuiApplication>
|
|
#include <QQuickView>
|
|
#include <QUrl>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
QQuickView view;
|
|
view.setSource(QUrl("qrc:/qrc_example.qml"));
|
|
view.show();
|
|
return app.exec();
|
|
}
|