From dabb94627bd8f4f9054f458c9a64171303c6b0cd Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Fri, 17 Jun 2016 20:40:29 -0600 Subject: [PATCH] build: configure OSX deployment target --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e2a81bb7..fc4cee13 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,6 +58,9 @@ if (MSVC) set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd") endif (MSVC) +#minimum version that supports unordered_map +set(CMAKE_OSX_DEPLOYMENT_TARGET 10.9) + add_subdirectory(bspinfo) add_subdirectory(bsputil) add_subdirectory(light)