summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/qt3d.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/qt3d.pro')
-rw-r--r--examples/qt3d/qt3d.pro8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/qt3d/qt3d.pro b/examples/qt3d/qt3d.pro
index afba0a352..a46c3a52c 100644
--- a/examples/qt3d/qt3d.pro
+++ b/examples/qt3d/qt3d.pro
@@ -1,6 +1,7 @@
TEMPLATE = subdirs
SUBDIRS += \
+ examples-common \
playground-qml \
simple-qml \
simple-cpp \
@@ -47,6 +48,7 @@ SUBDIRS += \
lights \
compute-particles
+
# qmake seems to break in some CI configurations, disable this for now
#SUBDIRS += qgltf
@@ -54,3 +56,9 @@ SUBDIRS += \
#SUBDIRS += qt3d
qtHaveModule(widgets): SUBDIRS += assimp-cpp \
basicshapes-cpp
+
+for(subdir, SUBDIRS) {
+ !equals(subdir, examples-common) {
+ $${subdir}.depends += examples-common
+ }
+}