aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols2/material/CMakeLists.txt
blob: 1cd3a98d0f8afab4728c94a221540749fcb7f4c3 (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

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

qt_internal_add_manual_test(material
    GUI
    SOURCES
        material.cpp
    LIBRARIES
        Qt::Gui
        Qt::Qml
        Qt::QuickControls2
)

set(qmake_immediate_resource_files
    "material.qml"
    "Constants.qml"
    "pages/ButtonPage.qml"
    "pages/DelayButtonPage.qml"
    "pages/RoundButtonPage.qml"
    "qmldir"
)

qt_internal_add_resource(material "qmake_immediate"
    PREFIX
        "/"
    FILES
        ${qmake_immediate_resource_files}
)