aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltyperegistrar/VersionZero/CMakeLists.txt
blob: 39dfccebd19aac4d9c8fb815b188db312199cb80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
qt_add_library(tst_qmltyperegistrar_major_version_zero)
qt_autogen_tools_initial_setup(tst_qmltyperegistrar_major_version_zero)
target_link_libraries(tst_qmltyperegistrar_major_version_zero PRIVATE Qt::Core Qt::Qml)
qt_enable_autogen_tool(tst_qmltyperegistrar_major_version_zero "moc" ON)
qt_add_qml_module(tst_qmltyperegistrar_major_version_zero
    URI VersionZero
    VERSION 0.1
    SOURCES
        version_zero_type.h
)
qt_autogen_tools_initial_setup(tst_qmltyperegistrar_major_version_zeroplugin)

# Make sure the backing library is found on Windows next to the executable
set_target_properties(
    tst_qmltyperegistrar_major_version_zero
    PROPERTIES
        RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/..
        LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/..
        ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/..
)