aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs')
-rw-r--r--tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs b/tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs
index 95adaa4ba..a95d6015e 100644
--- a/tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs
+++ b/tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs
@@ -39,11 +39,13 @@ Project {
}
DynamicLibrary {
- Depends { name: "bundle" }
Depends { name: "cpp" }
Depends { name: "indirect"; cpp.symbolLinkMode: "reexport" }
- bundle.isBundle: false
+ Properties {
+ condition: qbs.targetOS.contains("darwin")
+ bundle.isBundle: false
+ }
name: "functions"
files: ["lib.cpp"]
cpp.cxxLanguageVersion: "c++11"
@@ -80,10 +82,12 @@ Project {
}
DynamicLibrary {
- Depends { name: "bundle" }
Depends { name: "cpp" }
- bundle.isBundle: false
+ Properties {
+ condition: qbs.targetOS.contains("darwin")
+ bundle.isBundle: false
+ }
name: "indirect"
files: ["indirect.cpp"]
cpp.cxxLanguageVersion: "c++11"