aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlbasicapp/CMakeLists.txt
blob: 444009cdf4e4f8a43bddc4f71b193cc1929d0566 (plain)
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
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

qt_internal_add_test(tst_qmlbasicapp
    SOURCES
        tst_qmlbasicapp.cpp
    LIBRARIES
        Qt::Core
        Qt::Qml
)

qt6_add_qml_module(tst_qmlbasicapp
    VERSION 1.0
    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()