aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/shaderpoker/CMakeLists.txt
blob: f10c741ba28479de0330d3a09d6f5899e0153553 (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
# Copyright (C) 2025 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

qt_standard_project_setup(REQUIRES 6.8)

qt_internal_add_manual_test(manual_test_shaderPoker
    GUI
    SOURCES
        main.cpp
    LIBRARIES
        Qt::Gui
        Qt::Quick
        Qt::Quick3D
        Qt::Quick3DRuntimeRenderPrivate
        Qt::Quick3DGlslParserPrivate
)

qt_add_qml_module(manual_test_shaderPoker
    URI io.qt.tests.manual.shaderpoker
    VERSION 1.0
    QML_FILES
        Main.qml
        ShaderEditor.qml
        SectionLayout.qml
        VertexColorMaskEditor.qml
        VertexAttributeEditor.qml
        ImageMapEditor.qml
    SOURCES
        shaderpoker.h shaderpoker.cpp
        syntaxhighlighter.h syntaxhighlighter.cpp
        defaultmaterialshaderproperties.h defaultmaterialshaderproperties.cpp
    RESOURCES
        images/TreeExpanded.png
        images/TreeExpanded@2x.png
        images/TreeExpanded@3x.png
        images/TreeExpanded@4x.png
        images/TreeUnexpanded.png
        images/TreeUnexpanded@2x.png
        images/TreeUnexpanded@3x.png
        images/TreeUnexpanded@4x.png
    NO_CACHEGEN
)