summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Nichols <andy.nichols@nokia.com>2012-06-06 15:51:27 +0200
committerAndy Nichols <andy.nichols@nokia.com>2012-06-06 16:50:54 +0200
commit33ccf5847722df56822e407daed5c2ea3049f0c9 (patch)
treef0d5f7e93ca5b89e213b103935ff310e7493633c
parent019e931350da21767ea6ce2ff44366c99df4d738 (diff)
downloadqtwayland-33ccf5847722df56822e407daed5c2ea3049f0c9.tar.gz
qtwayland-33ccf5847722df56822e407daed5c2ea3049f0c9.tar.bz2
qtwayland-33ccf5847722df56822e407daed5c2ea3049f0c9.zip
Fix "make install" to not build examples and tests
Before this commit, make install would always end up building the examples and tests, even if qtbase was configured not to. Change-Id: I898e1125a343a8e2749a055f4bd886256026de9d Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
-rw-r--r--qtwayland.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/qtwayland.pro b/qtwayland.pro
index 377ee24..44d68b4 100644
--- a/qtwayland.pro
+++ b/qtwayland.pro
@@ -14,7 +14,8 @@ module_qtwayland_examples.depends = module_qtwayland_src
module_qtwayland_tests.subdir = tests
module_qtwayland_tests.target = module-qtwayland-tests
module_qtwayland_tests.depends = module_qtwayland_src
-!contains(QT_BUILD_PARTS,tests):!with-tests {
+module_qtwayland_tests.CONFIG = no_default_install
+!contains(QT_BUILD_PARTS,tests):{
module_qtwayland_tests.CONFIG += no_default_target
}