aboutsummaryrefslogtreecommitdiffstats
path: root/qbs.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-10-17 11:33:50 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-10-17 12:04:15 +0200
commit7652a6cb4f4c6b3fcd1229b50649453aa1b9a978 (patch)
tree3decdc0fde32375b1196954e8ad8b9569239eddc /qbs.qbs
parent0cbb8705ab45098050152135d48849729b858110 (diff)
Fix condition for including the "examples" sub-project.
The condition has to be attached to the sub-project via the "Properties" item, not to the SubProject item directly. Change-Id: I858788c463c6816929f0f891f8d03438eeb2886c Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'qbs.qbs')
-rw-r--r--qbs.qbs4
1 files changed, 3 insertions, 1 deletions
diff --git a/qbs.qbs b/qbs.qbs
index f5c9967be..7d084c955 100644
--- a/qbs.qbs
+++ b/qbs.qbs
@@ -33,6 +33,8 @@ Project {
SubProject {
filePath: "examples/examples.qbs"
- condition: project.withExamples
+ Properties {
+ condition: parent.withExamples
+ }
}
}