summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/qt3d.pro
blob: a46c3a52ced32ed7dfd41841709f1e92041c1485 (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
TEMPLATE = subdirs

SUBDIRS += \
    examples-common \
    playground-qml \
    simple-qml \
    simple-cpp \
    gltf \
    assimp \
    cpp_example \
    multiviewport \
    torus-qml \
    cylinder-qml \
    cylinder-cpp \
    bigmodel-qml \
    wireframe \
    tessellation-modes \
    deferred-renderer-qml \
    deferred-renderer-cpp \
    shadow-map-qml \
    bigscene-cpp \
    materials \
    keyboardinput-qml \
    loader-qml \
    wave \
    materials-cpp \
    dynamicscene-cpp \
    scene3d \
    enabled-qml \
    skybox \
    controls \
    anaglyph-rendering \
    simple-shaders-qml \
    planets-qml \
    plasma \
    gooch-qml \
    transparency-qml \
    transparency-qml-scene3d \
    scene3d-loader \
    clip-planes-qml \
    mouseinput-qml \
    custom-mesh-cpp \
    bigscene-instanced-qml \
    custom-mesh-qml \
    instanced-arrays-qml \
    picking-qml \
    transforms-qml \
    lights \
    compute-particles


# qmake seems to break in some CI configurations, disable this for now
#SUBDIRS += qgltf

# TODO Port the old examples to new APIs
#SUBDIRS += qt3d
qtHaveModule(widgets): SUBDIRS += assimp-cpp \
    basicshapes-cpp

for(subdir, SUBDIRS) {
    !equals(subdir, examples-common) {
        $${subdir}.depends += examples-common
    }
}