aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/disabledProject
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-07-11 18:06:02 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2013-07-12 14:28:50 +0200
commitb3abe3ef3c37c25548f46a81ac2a3b24f36dba53 (patch)
tree123321c5f075e3b2c24de1f2570c10eacbfff943 /tests/auto/blackbox/testdata/disabledProject
parent1429dfb4052e5fa443ee9677eef95534b436f461 (diff)
Properly support disabled projects.
Until now, this only worked for SubProject items. Change-Id: Id63424883d0c120567860f225f112635c7ea0c82 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/blackbox/testdata/disabledProject')
-rw-r--r--tests/auto/blackbox/testdata/disabledProject/disabled_project.qbs7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/disabledProject/disabled_project.qbs b/tests/auto/blackbox/testdata/disabledProject/disabled_project.qbs
new file mode 100644
index 000000000..1461b70ad
--- /dev/null
+++ b/tests/auto/blackbox/testdata/disabledProject/disabled_project.qbs
@@ -0,0 +1,7 @@
+import qbs
+import qbs.File
+
+Project {
+ condition: File.exists("blubb");
+ references: "blubb/nosuchfile.qbs"
+}