aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/external-libs/external-libs.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/external-libs/external-libs.qbs')
-rw-r--r--tests/auto/blackbox/testdata/external-libs/external-libs.qbs10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/auto/blackbox/testdata/external-libs/external-libs.qbs b/tests/auto/blackbox/testdata/external-libs/external-libs.qbs
index ff40604b4..5b9e12ebb 100644
--- a/tests/auto/blackbox/testdata/external-libs/external-libs.qbs
+++ b/tests/auto/blackbox/testdata/external-libs/external-libs.qbs
@@ -7,7 +7,10 @@ Project {
name: "lib1"
destinationDirectory: project.libDir
Depends { name: "cpp" }
- bundle.isBundle: false
+ Properties {
+ condition: qbs.targetOS.contains("darwin")
+ bundle.isBundle: false
+ }
files: ["lib1.cpp"]
}
StaticLibrary {
@@ -15,7 +18,10 @@ Project {
destinationDirectory: project.libDir
Depends { name: "cpp" }
Depends { name: "lib1" }
- bundle.isBundle: false
+ Properties {
+ condition: qbs.targetOS.contains("darwin")
+ bundle.isBundle: false
+ }
files: ["lib2.cpp"]
}
// TODO: Remove once we have parameterized dependencies