aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/qquickiconimage/CMakeLists.txt
blob: 58f8a8f6f5b8ae283690b6c1e28e4ed3f4d60973 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

# Generated from qquickiconimage.pro.

if (NOT QT_BUILD_STANDALONE_TESTS AND NOT QT_BUILDING_QT)
    cmake_minimum_required(VERSION 3.16)
    project(tst_qquickiconimage LANGUAGES C CXX ASM)
    find_package(Qt6BuildInternals COMPONENTS STANDALONE_TEST)
endif()

#####################################################################
## tst_qquickiconimage Test:
#####################################################################

# Collect test data
file(GLOB_RECURSE test_data_glob
    RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
    ${CMAKE_CURRENT_SOURCE_DIR}/data/*.qml)
list(APPEND test_data ${test_data_glob})
file(GLOB_RECURSE test_data_glob
    RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
    ${CMAKE_CURRENT_SOURCE_DIR}/data/icons/*)
list(APPEND test_data ${test_data_glob})

qt_internal_add_test(tst_qquickiconimage
    SOURCES
        tst_qquickiconimage.cpp
    DEFINES
        QQC2_IMPORT_PATH="${CMAKE_CURRENT_SOURCE_DIR}/../../../../src/quickcontrols"
    LIBRARIES
        Qt::QuickControls2ImplPrivate
        Qt::QuickPrivate
    LIBRARIES
        Qt::CorePrivate
        Qt::Gui
        Qt::GuiPrivate
        Qt::Qml
        Qt::QmlPrivate
        Qt::Quick
        Qt::QuickControls2
        Qt::QuickControls2Private
        Qt::QuickControlsTestUtilsPrivate
        Qt::QuickPrivate
        Qt::QuickTemplates2Private
        Qt::QuickTest
        Qt::QuickTestUtilsPrivate
        Qt::TestPrivate
    TESTDATA ${test_data}
)

# Resources:
set(resources_resource_files
    "icons/testtheme/16x16/actions/appointment-new.png"
    "icons/testtheme/22x22/actions/+testselector/appointment-new.png"
    "icons/testtheme/22x22/actions/+testselector/appointment-new@2x.png"
    "icons/testtheme/22x22/actions/appointment-new.png"
    "icons/testtheme/22x22/actions/appointment-new@2x.png"
    "icons/testtheme/22x22/actions/color-test-original.png"
    "icons/testtheme/22x22/actions/color-test-original@2x.png"
    "icons/testtheme/22x22/actions/color-test-tinted.png"
    "icons/testtheme/22x22/actions/color-test-tinted@2x.png"
    "icons/testtheme/22x22@2/actions/+testselector/appointment-new.png"
    "icons/testtheme/22x22@2/actions/appointment-new.png"
    "icons/testtheme/appointment-new.svg"
    "icons/testtheme/index.theme"
)

qt_internal_add_resource(tst_qquickiconimage "resources"
    PREFIX
        "/"
    FILES
        ${resources_resource_files}
)


## Scopes:
#####################################################################

qt_internal_extend_target(tst_qquickiconimage CONDITION TARGET Qt::Svg
    LIBRARIES
        Qt::Svg
)

qt_internal_extend_target(tst_qquickiconimage CONDITION ANDROID OR IOS
    DEFINES
        QT_QMLTEST_DATADIR=":/data"
)

qt_internal_extend_target(tst_qquickiconimage CONDITION NOT ANDROID AND NOT IOS
    DEFINES
        QT_QMLTEST_DATADIR="${CMAKE_CURRENT_SOURCE_DIR}/data"
)