aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata')
-rw-r--r--tests/auto/blackbox/testdata/project-with-properties-item/project.qbs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/project-with-properties-item/project.qbs b/tests/auto/blackbox/testdata/project-with-properties-item/project.qbs
new file mode 100644
index 000000000..d59a26a94
--- /dev/null
+++ b/tests/auto/blackbox/testdata/project-with-properties-item/project.qbs
@@ -0,0 +1,12 @@
+import qbs 1.0
+
+Project {
+ property string binPath: "/usr/bin"
+ property string libPath: "/usr/lib"
+
+ Properties {
+ condition: qbs.targetOS.contains("osx")
+ binPath: "/Users/boo"
+ libPath: "/Libraries/foo"
+ }
+}