From 0e789a9f1bcaa48be7d839b6d6ee19c6f6bc2b7a Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 9 Aug 2020 14:57:26 +0300 Subject: [PATCH] - set macOS deployment target to match GZDoom and Raze --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a4815a5..5f4cb14 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -154,6 +154,7 @@ else() if( APPLE ) + set( CMAKE_OSX_DEPLOYMENT_TARGET "10.9" ) if( CMAKE_CXX_COMPILER_ID STREQUAL "Clang" ) # With standard Apple tools -stdlib=libc++ needs to be specified in order to get # C++11 support using SDKs 10.7 and 10.8.