aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/qmlextensionplugins
diff options
context:
space:
mode:
authorLeander Beernaert <leander.beernaert@qt.io>2019-09-18 17:30:15 +0200
committerLeander Beernaert <leander.beernaert@qt.io>2019-09-19 11:37:27 +0000
commiteff8affd8e793615b31e13a525eb08a3583a4908 (patch)
tree2a6345c7b8d874d375b6eba1311e9cf2f0c9e75e /examples/qml/qmlextensionplugins
parentec57196980e6a32fce3c56ec3c9f8183c7bcaad1 (diff)
Add missing Examples with qml plugins
Add missing example projects which depended on the public QML plugin API. Change-Id: I05ed91e74eeaf6644700db13c3083fd110d96a62 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'examples/qml/qmlextensionplugins')
-rw-r--r--examples/qml/qmlextensionplugins/CMakeLists.txt38
1 files changed, 38 insertions, 0 deletions
diff --git a/examples/qml/qmlextensionplugins/CMakeLists.txt b/examples/qml/qmlextensionplugins/CMakeLists.txt
new file mode 100644
index 0000000000..44cf493b9b
--- /dev/null
+++ b/examples/qml/qmlextensionplugins/CMakeLists.txt
@@ -0,0 +1,38 @@
+# Generated from qmlextensionplugins.pro.
+
+cmake_minimum_required(VERSION 3.14)
+project(qmlqtimeexampleplugin LANGUAGES CXX)
+
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+
+set(CMAKE_AUTOMOC ON)
+set(CMAKE_AUTORCC ON)
+set(CMAKE_AUTOUIC ON)
+
+set(INSTALL_EXAMPLEDIR "examples")
+
+find_package(Qt6 COMPONENTS Core)
+find_package(Qt6 COMPONENTS Gui)
+find_package(Qt6 COMPONENTS Qml)
+
+qt6_add_qml_module(qmlqtimeexampleplugin
+ OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/imports/TimeExample"
+ VERSION 1.0
+ URI "TimeExample"
+ INSTALL_LOCATION ${INSTALL_EXAMPLEDIR}
+)
+
+target_sources(qmlqtimeexampleplugin PRIVATE
+ plugin.cpp
+)
+target_link_libraries(qmlqtimeexampleplugin PUBLIC
+ Qt::Core
+ Qt::Gui
+ Qt::Qml
+)
+
+install(TARGETS qmlqtimeexampleplugin
+ RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
+ BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
+ LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
+)