File: CMakeLists.txt

package info (click to toggle)
qt6-declarative 6.4.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 279,108 kB
  • sloc: cpp: 655,548; javascript: 513,497; xml: 9,201; python: 3,374; ansic: 3,278; sh: 213; php: 27; makefile: 17
file content (30 lines) | stat: -rw-r--r-- 801 bytes parent folder | download
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
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"
    QML_FILES
        main.qml
)

add_subdirectory(BasicExtension)
add_subdirectory(TimeExample)

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
        qmlqtimeexampleplugin
    )
else()
    # For fully static builds, let qmlimportscanner take care of everything
    qt6_import_qml_plugins(tst_qmlbasicapp)
endif()