aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/overrideProjectProperties/project_using_helper_lib.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-05-23 11:38:18 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-05-23 11:53:58 +0200
commit900e85100ea49e8a30e03aed32da584a54a47812 (patch)
tree48e4ab7ab90ceca3607f8a1212d622949371c573 /tests/auto/blackbox/testdata/overrideProjectProperties/project_using_helper_lib.qbs
parentdf11b67977eb25128b36a336219c9c7e0205a3da (diff)
Add XFAIL test case for QBS-281.
Task-number: QBS-281 Change-Id: Ia9f3c50ace67ef7ee65242f8c83475bcdc289cf2 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/blackbox/testdata/overrideProjectProperties/project_using_helper_lib.qbs')
-rw-r--r--tests/auto/blackbox/testdata/overrideProjectProperties/project_using_helper_lib.qbs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/overrideProjectProperties/project_using_helper_lib.qbs b/tests/auto/blackbox/testdata/overrideProjectProperties/project_using_helper_lib.qbs
new file mode 100644
index 000000000..c1b4482f1
--- /dev/null
+++ b/tests/auto/blackbox/testdata/overrideProjectProperties/project_using_helper_lib.qbs
@@ -0,0 +1,14 @@
+import qbs 1.0
+
+Project {
+ property bool linkSuccessfully: false
+ references: linkSuccessfully ? ["helper_lib.qbs"] : []
+ CppApplication {
+ type: "application"
+ Depends {
+ condition: project.linkSuccessfully
+ name: "helperLib"
+ }
+ files: "main2.cpp"
+ }
+}