aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/propertyChanges/project.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/propertyChanges/project.qbs')
-rw-r--r--tests/auto/blackbox/testdata/propertyChanges/project.qbs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/propertyChanges/project.qbs b/tests/auto/blackbox/testdata/propertyChanges/project.qbs
index 13c568ec5..9b23e08d7 100644
--- a/tests/auto/blackbox/testdata/propertyChanges/project.qbs
+++ b/tests/auto/blackbox/testdata/propertyChanges/project.qbs
@@ -9,6 +9,7 @@ Project {
files: "source1.cpp"
}
CppApplication {
+ Depends { name: 'library' }
name: "product 2"
cpp.defines: project.projectDefines
files: "source2.cpp"
@@ -18,6 +19,11 @@ Project {
cpp.defines: qbs.getenv("QBS_BLACKBOX_DEFINE")
files: "source3.cpp"
}
+ DynamicLibrary {
+ name: "library"
+ Depends { name: "cpp" }
+ files: "lib.cpp"
+ }
Product {
name: "generated text file"