Skip to content

Commit

Permalink
Allow to drop Mac OS X 10.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Cunz committed Dec 2, 2015
1 parent 0efc905 commit ab40828
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Expand Up @@ -8,7 +8,11 @@
# line will actually be ignored, since we're doing that already on the top level
# of the build system.

set(CMAKE_OSX_DEPLOYMENT_TARGET 10.6)
if(SUPPORT_OSX_SNOW_LEOPARD)
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.6)
else()
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7)
endif()

project(updater)

Expand Down

0 comments on commit ab40828

Please sign in to comment.