summaryrefslogtreecommitdiffstats
path: root/qtsystems.pro
blob: b3a101d11261eba4290afb6279dccbfdd6f49712 (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
TEMPLATE = subdirs
CONFIG += ordered

module_qtsystems_src.subdir = src
module_qtsystems_src.target = module-qtsystems-src

module_qtsystems_tests.subdir = tests
module_qtsystems_tests.target = module-qtsystems-tests
module_qtsystems_tests.depends = module_qtsystems_src
module_qtsystems_tests.CONFIG = no_default_install
!contains(QT_BUILD_PARTS,tests):!with-tests {
    module_qtsystems_tests.CONFIG += no_default_target
}

module_qtsystems_examples.subdir = examples
module_qtsystems_examples.target = module-qtsystems-examples
module_qtsystems_examples.depends = module_qtsystems_src
!contains(QT_BUILD_PARTS,examples):!with-examples {
    module_qtsystems_examples.CONFIG = no_default_target no_default_install
    warning("No examples being used")
}

SUBDIRS += module_qtsystems_src \
           module_qtsystems_tests \
           module_qtsystems_examples