aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-05-14 14:38:50 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-05-14 13:29:28 +0000
commit77e4517e12539b42196d6ce953eb76c969bd398f (patch)
tree87c7e6e816371a0face55fa2bd886c18c4c95db4
parenta71e49cf5c1d1daec0097bb878ba4dc170cecc09 (diff)
Fix TestBlackbox::makefileGenerator on macOS again
One of our test machines still had problems. Change-Id: I49ec0ffd9831fbe768155a132f2d8db674e0db87 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
-rw-r--r--tests/auto/blackbox/testdata/makefile-generator/app.qbs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/makefile-generator/app.qbs b/tests/auto/blackbox/testdata/makefile-generator/app.qbs
index c1fb89a11..103f71ecf 100644
--- a/tests/auto/blackbox/testdata/makefile-generator/app.qbs
+++ b/tests/auto/blackbox/testdata/makefile-generator/app.qbs
@@ -4,10 +4,12 @@ CppApplication {
name: "the app"
consoleApplication: true
+ cpp.cxxLanguageVersion: "c++11"
cpp.separateDebugInformation: false
Properties {
condition: qbs.targetOS.contains("macos")
bundle.embedInfoPlist: false
+ cpp.minimumMacosVersion: "10.7"
}
files: "main.cpp"