aboutsummaryrefslogtreecommitdiffstats
path: root/demo/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'demo/CMakeLists.txt')
-rw-r--r--demo/CMakeLists.txt23
1 files changed, 0 insertions, 23 deletions
diff --git a/demo/CMakeLists.txt b/demo/CMakeLists.txt
deleted file mode 100644
index aa8fd49..0000000
--- a/demo/CMakeLists.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-qt_add_executable(QtXpl2Demo main.cpp)
-
-qt_add_qml_module(
- QtXpl2Demo
- URI
- QtXpl2Demo
- VERSION
- 1.0
- QML_FILES
- Main.qml
- CommandsPage.qml
- StatusPage.qml
- DebugConsole.qml
- # IMPORT_PATH sets QT_QML_IMPORT_PATH on the target, which qmlls reads to
- # resolve imports like "import Xpl2" in .qmlls.ini.
- IMPORT_PATH
- "${PROJECT_BINARY_DIR}/qml")
-
-set_target_properties(QtXpl2Demo PROPERTIES RUNTIME_OUTPUT_DIRECTORY
- "${PROJECT_BINARY_DIR}/bin")
-
-target_link_libraries(QtXpl2Demo PRIVATE Qt6::Quick QtXpl2plugin)
-target_include_directories(QtXpl2Demo PRIVATE "${PROJECT_SOURCE_DIR}/src")