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
|
TEMPLATE = subdirs
SUBDIRS = \
coretest \
core \
cmake \
global
installed_cmake.depends = cmake
QT_FOR_CONFIG += 3dcore
qtConfig(qt3d-render): SUBDIRS += render
qtConfig(qt3d-input): SUBDIRS += input
qtConfig(qt3d-animation): SUBDIRS += animation
qtConfig(qt3d-extras): SUBDIRS += extras
qtConfig(qt3d-render) {
SUBDIRS += geometryloaders
qtConfig(qt3d-input) {
qtHaveModule(quick) {
SUBDIRS += quick3d
}
}
}
for(subdir, SUBDIRS) {
!equals(subdir, coretest) {
$${subdir}.depends += coretest
}
}
|