From eff8affd8e793615b31e13a525eb08a3583a4908 Mon Sep 17 00:00:00 2001 From: Leander Beernaert Date: Wed, 18 Sep 2019 17:30:15 +0200 Subject: 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 --- examples/qml/CMakeLists.txt | 5 +--- examples/qml/qmlextensionplugins/CMakeLists.txt | 38 +++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 4 deletions(-) create mode 100644 examples/qml/qmlextensionplugins/CMakeLists.txt (limited to 'examples/qml') diff --git a/examples/qml/CMakeLists.txt b/examples/qml/CMakeLists.txt index 8ff3b7aa9b..0ec4c9b39d 100644 --- a/examples/qml/CMakeLists.txt +++ b/examples/qml/CMakeLists.txt @@ -4,10 +4,7 @@ add_subdirectory(referenceexamples) add_subdirectory(tutorials) add_subdirectory(shell) if(TARGET Qt::Quick) -# special case begin -# Needs public QML api -# add_subdirectory(qmlextensionplugins) -# special case end + add_subdirectory(qmlextensionplugins) add_subdirectory(xmlhttprequest) endif() if(QT_FEATURE_qml_network AND TARGET Qt::Quick) 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}" +) -- cgit v1.2.3