summaryrefslogtreecommitdiffstats
path: root/mkspecs/features
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-07-10 08:59:40 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-10 22:44:30 +0200
commit9d1f44b9ce61ae42eccf92d24d5eda437ecad05e (patch)
tree1d3205f4a737897962075a400692a2bfaa1778e1 /mkspecs/features
parentb9bb115972b0a6e6c21f2cccc6abe9b7e720bed5 (diff)
make sure that building tests implies building other parts
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>
Diffstat (limited to 'mkspecs/features')
-rw-r--r--mkspecs/features/qt_parts.prf11
1 files changed, 9 insertions, 2 deletions
diff --git a/mkspecs/features/qt_parts.prf b/mkspecs/features/qt_parts.prf
index df932dd7b3..94f58ffdcc 100644
--- a/mkspecs/features/qt_parts.prf
+++ b/mkspecs/features/qt_parts.prf
@@ -34,9 +34,16 @@ exists($$_PRO_FILE_PWD_/demos/demos.pro) {
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 tools
+ 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
+ !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
}