blob: fa8144bc96a5518f68f41921c68996f20472f980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
TEMPLATE = subdirs
module_qtscript_src.subdir = src
module_qtscript_src.target = module-qtscript-src
module_qtscript_examples.subdir = examples
module_qtscript_examples.target = module-qtscript-examples
module_qtscript_examples.depends = module_qtscript_src
!contains(QT_BUILD_PARTS,examples) {
module_qtscript_examples.CONFIG += no_default_install no_default_target
}
module_qtscript_tests.subdir = tests
module_qtscript_tests.target = module-qtscript-tests
module_qtscript_tests.depends = module_qtscript_src
module_qtscript_tests.CONFIG = no_default_install
!contains(QT_BUILD_PARTS,tests):module_qtscript_tests.CONFIG += no_default_target
SUBDIRS += module_qtscript_src \
module_qtscript_examples \
module_qtscript_tests \
|