summaryrefslogtreecommitdiff
path: root/indra/cmake
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2016-12-12 11:50:25 -0500
committerNat Goodspeed <nat@lindenlab.com>2016-12-12 11:50:25 -0500
commit45a32ed14d8172a2df3e01bdcf820072d7532bc0 (patch)
tree6fa4c3114dc7200d0476c0c73b26c30fab169408 /indra/cmake
parent771c7dd3c00e2eecfaa7382e41abb3b643cda84a (diff)
DRTVWR-418: Align minimum OS X version with viewer-build-variables.
Diffstat (limited to 'indra/cmake')
-rw-r--r--indra/cmake/Variables.cmake7
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/cmake/Variables.cmake b/indra/cmake/Variables.cmake
index 3d0cb0a3c9..0ff37dedad 100644
--- a/indra/cmake/Variables.cmake
+++ b/indra/cmake/Variables.cmake
@@ -138,10 +138,11 @@ endif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(DARWIN 1)
-
- # now we only support Xcode 7.0 using 10.11 (El Capitan), minimum OS 10.7 (Lion)
+
+ # The following must agree with
+ # https://bitbucket.org/lindenlab/viewer-build-variables/src/tip/variables
set(XCODE_VERSION 7.0)
- set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7)
+ set(CMAKE_OSX_DEPLOYMENT_TARGET 10.9)
set(CMAKE_OSX_SYSROOT macosx10.11)
set(CMAKE_XCODE_ATTRIBUTE_GCC_VERSION "com.apple.compilers.llvm.clang.1_0")