Skip to content
Snippets Groups Projects
Commit 05900cbb authored by Ulf Hermann's avatar Ulf Hermann
Browse files

integrate

Change-Id: I7f2ed939e36e7b1f9786d25887552bec3e024f78
parent dd0b30c5
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,16 @@ add_subdirectory(QtPresentation)
qt_add_executable(slideshow WIN32 MACOSX_BUNDLE main.cpp)
qt_add_qml_module(slideshow
URI qtws23
QML_FILES
CodeSection.qml
CppCodeSection.qml
QmlCodeSection.qml
SlideDeck.qml
SlideDeckRotated.qml
)
target_link_libraries(slideshow PUBLIC
Qt6::Core
Qt6::Gui
......
......@@ -12,7 +12,7 @@ int main(int argc, char *argv[])
QGuiApplication app(argc, argv);
QQuickView view(QUrl::fromLocalFile(QString::fromUtf8(argv[1])));
QQuickView view(QUrl("qrc:/qt/qml/qtws23/SlideDeck.qml"));
view.show();
return app.exec();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment