From fe25c4240836a91bd9acf22b36477ec1a548cd06 Mon Sep 17 00:00:00 2001 From: James Turner Date: Tue, 17 Mar 2015 23:27:25 +0000 Subject: [PATCH] Make flag Mac specific. --- CMakeLists.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a7d04fb4..884761474 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,9 +16,6 @@ endif() project(FlightGear) -# using 10.7 because boost requires libc++ and 10.6 doesn't include it -SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=10.7") - # We have some custom .cmake scripts not in the official distribution. set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules;${CMAKE_MODULE_PATH}") @@ -108,6 +105,8 @@ IF(APPLE) find_library(COCOA_LIBRARY Cocoa) list(APPEND PLATFORM_LIBS ${COCOA_LIBRARY} ${CORESERVICES_LIBRARY}) + # using 10.7 because boost requires libc++ and 10.6 doesn't include it + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=10.7") elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") set(USE_DBUS_DEFAULT 1)