From 5f45bb34ce49959c1b61d4af91402640d85cfd63 Mon Sep 17 00:00:00 2001 From: Jake Petroules Date: Thu, 8 Jun 2017 14:36:15 -0700 Subject: Fix deployment target on macOS According to the README, the minimum version is 10.8, but the code did not reflect that reality. Change-Id: I2bbaeefe614cba5b5fa8413b68202bb75f346d70 Reviewed-by: Eike Ziller --- qtcreator.pri | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qtcreator.pri') diff --git a/qtcreator.pri b/qtcreator.pri index f25d94536f..f5b6e55c63 100644 --- a/qtcreator.pri +++ b/qtcreator.pri @@ -59,7 +59,7 @@ defineReplace(stripSrcDir) { return($$relative_path($$absolute_path($$1, $$OUT_PWD), $$_PRO_FILE_PWD_)) } -macos:!minQtVersion(5, 7, 0) { +darwin:!minQtVersion(5, 7, 0) { # Qt 5.6 still sets deployment target 10.7, which does not work # with all C++11/14 features (e.g. std::future) QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.8 -- cgit v1.2.1