aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/symbolLinkMode
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2017-06-20 10:58:15 -0700
committerJake Petroules <jake.petroules@qt.io>2017-06-21 16:01:53 +0000
commit1913b32bd828c53f6845ed00dae99512e8d81321 (patch)
tree491848a54a45e5d8ce026718605763a9526ea1e4 /tests/auto/blackbox/testdata/symbolLinkMode
parente4ea8f3ac7e473c227bc54ea26ae9a6fd3da1675 (diff)
Fix tests with older versions of Apple Clang
Amends and fixes a regression introduced in 4551d11. Change-Id: I8014c8bfb82c389d4ae741f868be45e420e327ca Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'tests/auto/blackbox/testdata/symbolLinkMode')
-rw-r--r--tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs b/tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs
index 4770a8290..95adaa4ba 100644
--- a/tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs
+++ b/tests/auto/blackbox/testdata/symbolLinkMode/symbolLinkMode.qbs
@@ -28,6 +28,7 @@ Project {
return ["WEAK_IMPORT=", installLib];
}
cpp.cxxLanguageVersion: "c++11"
+ cpp.minimumMacosVersion: "10.5"
cpp.rpaths: qbs.targetOS.contains("darwin") ? ["@loader_path/../lib"] : ["$ORIGIN/../lib"]
Group {
@@ -46,6 +47,7 @@ Project {
name: "functions"
files: ["lib.cpp"]
cpp.cxxLanguageVersion: "c++11"
+ cpp.minimumMacosVersion: "10.5"
cpp.rpaths: qbs.targetOS.contains("darwin") ? ["@loader_path"] : ["$ORIGIN"]
Properties {
@@ -85,6 +87,7 @@ Project {
name: "indirect"
files: ["indirect.cpp"]
cpp.cxxLanguageVersion: "c++11"
+ cpp.minimumMacosVersion: "10.5"
Properties {
condition: qbs.targetOS.contains("darwin")