Explicit Mac SDK for the moment.
This commit is contained in:
parent
475166643c
commit
c98f8e4ac1
1 changed files with 5 additions and 4 deletions
|
@ -14,6 +14,10 @@ if(COMMAND cmake_policy)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
# using 10.7 because boost requires libc++ and 10.6 doesn't include it
|
||||
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7)
|
||||
set(CMAKE_OSX_SYSROOT /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk)
|
||||
|
||||
project(FlightGear)
|
||||
|
||||
# We have some custom .cmake scripts not in the official distribution.
|
||||
|
@ -104,14 +108,11 @@ IF(APPLE)
|
|||
find_library(CORESERVICES_LIBRARY CoreServices)
|
||||
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")
|
||||
find_package(Threads REQUIRED)
|
||||
find_package(X11 REQUIRED)
|
||||
|
||||
|
||||
set(USE_DBUS_DEFAULT 1)
|
||||
|
||||
find_package(UDev)
|
||||
|
|
Loading…
Add table
Reference in a new issue