summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Dalheimer <jan@dalheimer.de>2015-02-16 22:05:39 +0100
committerJan Dalheimer <jan@dalheimer.de>2015-02-16 22:05:39 +0100
commitf9a17eb9deb559ee01fd7e6c67d80c4f93badf28 (patch)
tree45f84564374773deea3c3b135e734f73c52eeb81
parentc6c5134398dfd5ff34bcb56ffb8334df63b4750f (diff)
downloadMultiMC-f9a17eb9deb559ee01fd7e6c67d80c4f93badf28.tar
MultiMC-f9a17eb9deb559ee01fd7e6c67d80c4f93badf28.tar.gz
MultiMC-f9a17eb9deb559ee01fd7e6c67d80c4f93badf28.tar.lz
MultiMC-f9a17eb9deb559ee01fd7e6c67d80c4f93badf28.tar.xz
MultiMC-f9a17eb9deb559ee01fd7e6c67d80c4f93badf28.zip
Fix the updater on OS X
-rw-r--r--mmc_updater/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/mmc_updater/CMakeLists.txt b/mmc_updater/CMakeLists.txt
index 84bc63a5..8d425b5a 100644
--- a/mmc_updater/CMakeLists.txt
+++ b/mmc_updater/CMakeLists.txt
@@ -40,8 +40,8 @@ if(APPLE)
# of the updater binary
set(CMAKE_OSX_ARCHITECTURES i386;x86_64)
- # Build the updater so that it works on OS X 10.5 and above.
- set(MIN_OSX_VERSION 10.5)
+ # Build the updater so that it works on OS X 10.7 and above.
+ set(MIN_OSX_VERSION 10.7)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mmacosx-version-min=${MIN_OSX_VERSION}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=${MIN_OSX_VERSION}")
endif()