9d1f44b9ce
some tests have runtime deps on the other parts Change-Id: Ieb2925e762e94b3c0b16884be0f59e10ce8e4878 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
load(qt_build_config)
|
|
|
|
TEMPLATE = subdirs
|
|
|
|
sub_src.subdir = src
|
|
sub_src.target = sub-src
|
|
SUBDIRS = sub_src
|
|
|
|
exists($$_PRO_FILE_PWD_/tools/tools.pro) {
|
|
sub_tools.subdir = tools
|
|
sub_tools.target = sub-tools
|
|
sub_tools.depends = sub_src
|
|
!contains(QT_BUILD_PARTS, tools): sub_tools.CONFIG = no_default_target no_default_install
|
|
SUBDIRS += sub_tools
|
|
}
|
|
|
|
exists($$_PRO_FILE_PWD_/examples/examples.pro) {
|
|
sub_examples.subdir = examples
|
|
sub_examples.target = sub-examples
|
|
sub_examples.depends = sub_src
|
|
!contains(QT_BUILD_PARTS, examples): sub_examples.CONFIG = no_default_target no_default_install
|
|
SUBDIRS += sub_examples
|
|
}
|
|
|
|
# Some modules still have these
|
|
exists($$_PRO_FILE_PWD_/demos/demos.pro) {
|
|
sub_demos.subdir = demos
|
|
sub_demos.target = sub-demos
|
|
sub_demos.depends = sub_src
|
|
!contains(QT_BUILD_PARTS, examples): sub_demos.CONFIG = no_default_target no_default_install
|
|
SUBDIRS += sub_demos
|
|
}
|
|
|
|
exists($$_PRO_FILE_PWD_/tests/tests.pro) {
|
|
sub_tests.subdir = tests
|
|
sub_tests.target = sub-tests
|
|
sub_tests.depends = sub_src # The tests may have a run-time only dependency on other parts
|
|
sub_tests.CONFIG = no_default_install
|
|
!contains(QT_BUILD_PARTS, tests) {
|
|
sub_tests.CONFIG += no_default_target
|
|
} else {
|
|
# Make sure these are there in case we need them
|
|
sub_tools.CONFIG -= no_default_target
|
|
sub_examples.CONFIG -= no_default_target
|
|
sub_demos.CONFIG -= no_default_target
|
|
}
|
|
SUBDIRS += sub_tests
|
|
}
|
|
|
|
QT_BUILD_PARTS -= libs tools examples tests
|
|
!isEmpty(QT_BUILD_PARTS): warning("Unknown build part(s): $$QT_BUILD_PARTS")
|