aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/CMakeLists.txt
blob: e1ac1ca22d9ac970f630ca33dd0c045ce554d9b8 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
set(cpp_sources
    ambiguous.h
    birthdayparty.cpp birthdayparty.h
    cppbaseclass.h
    dynamicmeta.h
    invisible.h
    objectwithmethod.h
    person.cpp person.h
    state.h
    theme.cpp theme.h
    timelinetheme.cpp timelinetheme.h
)

set(qml_files
    AccessModelMethodsFromOutside.qml
    BaseMember.qml
    BindingExpression.qml
    Cycle1.qml
    Cycle2.qml
    Cycle3.qml
    Dummy.qml
    Enums.qml
    Foozle.qml
    Loopy.qml
    Panel.qml
    ProgressBar/Keyframe.qml
    ProgressBar/KeyframeGroup.qml
    ProgressBar/ProgressBar.ui.qml
    ProgressBar/Root.qml
    ProgressBar/Timeline.qml
    ProgressBar/TimelineAnimation.qml
    RootWithoutId.qml
    SelectionRectangle.qml
    Test.qml
    TestCase.qml
    WindowDerived.qml
    aliasLookup.qml
    ambiguous1/Ambiguous.qml
    ambiguous2/Ambiguous.qml
    anchorsFill.qml
    array.qml
    asCast.qml
    attachedBaseEnum.qml
    bindToValueType.qml
    blockComments.qml
    callContextPropertyLookupResult.qml
    childobject.qml
    colorAsVariant.qml
    colorString.qml
    componentReturnType.qml
    compositeTypeMethod.qml
    compositesingleton.qml
    construct.qml
    contextParam.qml
    conversions.qml
    conversions2.qml
    curlygrouped.qml
    cycleHead.qml
    deadShoeSize.qml
    deadStoreLoop.qml
    dialog.qml
    dynamicscene.qml
    enumInvalid.qml
    enumScope.qml
    enumsInOtherObject.qml
    enumsUser.qml
    equalsUndefined.qml
    excessiveParameters.qml
    extendedTypes.qml
    failures.qml
    fallbacklookups.qml
    fileDialog.qml
    fromBoolValue.qml
    functionLookup.qml
    funcWithParams.qml
    functionReturningVoid.qml
    globals.qml
    idAccess.qml
    immediateQuit.qml
    imports/QmlBench/Globals.qml
    importsFromImportPath.qml
    infinities.qml
    invisibleBase.qml
    invisibleTypes.qml
    intEnumCompare.qml
    intOverflow.qml
    interactive.qml
    interceptor.qml
    isnan.qml
    jsMathObject.qml
    jsimport.qml
    jsmoduleimport.qml
    layouts.qml
    library.js
    listIndices.qml
    listlength.qml
    math.qml
    methods.qml
    modulePrefix.qml
    moveRegVoid.qml
    noBindingLoop.qml
    noQQmlData.qml
    nonNotifyable.qml
    noscope.qml
    notEqualsInt.qml
    nullAccess.qml
    objectInVar.qml
    outOfBounds.qml
    overriddenMember.qml
    ownProperty.qml
    page.qml
    parentProp.qml
    popContextAfterRet.qml
    prefixedMetaType.qml
    pressAndHoldButton.qml
    registerelimination.qml
    revisions.qml
    scopeVsObject.qml
    script.js
    script.mjs
    shared/Slider.qml
    shifts.qml
    signal.qml
    signalHandler.qml
    specificParent.qml
    stringLength.qml
    testlogger.js
    text.qml
    themerbad.qml
    themergood.qml
    undefinedResets.qml
    unknownAttached.qml
    unknownParameter.qml
    unusedAttached.qml
    urlString.qml
    valueTypeProperty.qml
    variantlist.qml
    voidfunction.qml
)

set(resource_files
    ProgressBar/built-with-Qt_Large.png
    imports/QmlBench/qmldir
)

set_source_files_properties("shared/Slider.qml"
    PROPERTIES QT_RESOURCE_ALIAS "Slider.qml"
)

qt_add_library(codegen_test_module STATIC)
qt_autogen_tools_initial_setup(codegen_test_module)

set_target_properties(codegen_test_module PROPERTIES
    # We really want qmlcachegen here, even if qmlsc is available
    QT_QMLCACHEGEN_EXECUTABLE qmlcachegen
)

qt6_add_qml_module(codegen_test_module
    VERSION 1.0
    URI TestTypes
    IMPORT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/imports/"
    DEPENDENCIES
        QtQuick
        QtQuick.Templates
        QtQuick.Shapes
    SOURCES
        ${cpp_sources}
    QML_FILES
        ${qml_files}
    RESOURCES
        ${resource_files}
    OUTPUT_DIRECTORY TestTypes # Make sure tst_qmlcachegen doesn't see our output
)

add_dependencies(codegen_test_module Qt::Quick Qt::QuickTemplates2 Qt::QuickShapesPrivate)

qt_autogen_tools_initial_setup(codegen_test_moduleplugin)