1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
if(NOT QT_BUILD_STANDALONE_TESTS AND NOT QT_BUILDING_QT)
cmake_minimum_required(VERSION 3.16)
project(tst_qmlbasicapp LANGUAGES CXX)
find_package(Qt6BuildInternals REQUIRED COMPONENTS STANDALONE_TEST)
endif()
qt_internal_add_test(tst_qmlbasicapp
SOURCES
tst_qmlbasicapp.cpp
LIBRARIES
Qt::Core
Qt::Qml
)
qt6_add_qml_module(tst_qmlbasicapp
URI "BasicApp"
RESOURCE_PREFIX "/"
QML_FILES
main.qml
)
add_subdirectory(BasicExtension)
add_subdirectory(TimeExample2)
if(QT6_IS_SHARED_LIBS_BUILD)
# Plugins are static, but qt6_import_qml_plugins() can't be used because
# it does nothing for shared builds. Import and link the plugins manually.
target_sources(tst_qmlbasicapp PRIVATE manual_imports.cpp)
target_link_libraries(tst_qmlbasicapp PRIVATE
additional_qml_module_plugin
qmlqtimeexample2plugin
)
else()
# For fully static builds, let qmlimportscanner take care of everything
qt6_import_qml_plugins(tst_qmlbasicapp)
endif()
|