summaryrefslogtreecommitdiff
path: root/tests/auto/language/testdata/pathproperties.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/language/testdata/pathproperties.qbs')
-rw-r--r--tests/auto/language/testdata/pathproperties.qbs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/language/testdata/pathproperties.qbs b/tests/auto/language/testdata/pathproperties.qbs
new file mode 100644
index 000000000..f0eeabf57
--- /dev/null
+++ b/tests/auto/language/testdata/pathproperties.qbs
@@ -0,0 +1,9 @@
+import "subdir/pathproperties_base.qbs" as ProductBase
+
+ProductBase {
+ name: "product1"
+ property path projectFileDir: "."
+ property pathList filesInProjectFileDir: ["./aboutdialog.h", "aboutdialog.cpp"]
+ Depends { name: "dummy" }
+ dummy.includePaths: ["."]
+}