summaryrefslogtreecommitdiffstats
path: root/platform/osx/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-02-22 20:38:28 +0100
committerGitHub <noreply@github.com>2020-02-22 20:38:28 +0100
commit9a55f1564c96baff19c5595aa3e1ea296f9bd260 (patch)
tree0e447400fd99250304cb5c8eaed4dd805443a0d3 /platform/osx/detect.py
parent92332eb23d7b000cbd0b7838b355c9f9f3ad4d0e (diff)
parent6bb075a53f5c4e253ae6007418a22b59593073b8 (diff)
downloadredot-engine-9a55f1564c96baff19c5595aa3e1ea296f9bd260.tar.gz
Merge pull request #36457 from akien-mga/c++-standard-gnu++17
SCons: Bump required C++ standard to C++17
Diffstat (limited to 'platform/osx/detect.py')
-rw-r--r--platform/osx/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py
index 0b164a2c56..12ca5c10dc 100644
--- a/platform/osx/detect.py
+++ b/platform/osx/detect.py
@@ -164,5 +164,5 @@ def configure(env):
#env.Append(CPPDEFINES=['GLES_ENABLED', 'OPENGL_ENABLED'])
- env.Append(CCFLAGS=['-mmacosx-version-min=10.11'])
- env.Append(LINKFLAGS=['-mmacosx-version-min=10.11'])
+ env.Append(CCFLAGS=['-mmacosx-version-min=10.12'])
+ env.Append(LINKFLAGS=['-mmacosx-version-min=10.12'])