mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
fix building on OS X when no OSX SDK is installed. (i.e. just commandline tools)
This commit is contained in:
parent
f7423a0a4f
commit
4130116a85
@ -146,12 +146,17 @@ if (APPLE)
|
|||||||
# features can be used, not the minimum required version to run.
|
# features can be used, not the minimum required version to run.
|
||||||
set(OSX_MIN_VERSION "10.5.4")
|
set(OSX_MIN_VERSION "10.5.4")
|
||||||
set(TARGET_FLAGS "${TARGET_FLAGS} -mmacosx-version-min=${OSX_MIN_VERSION}")
|
set(TARGET_FLAGS "${TARGET_FLAGS} -mmacosx-version-min=${OSX_MIN_VERSION}")
|
||||||
set(TARGET_SYSROOT "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk")
|
set(SYSROOT_LEGACY_PATH "/Developer/SDKs/MacOSX10.6.sdk")
|
||||||
if (NOT EXISTS "${TARGET_SYSROOT}/")
|
set(SYSROOT_PATH "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk")
|
||||||
set(TARGET_SYSROOT "/Developer/SDKs/MacOSX10.6.sdk")
|
if (EXISTS "${SYSROOT_PATH}/")
|
||||||
|
set(TARGET_SYSROOT ${SYSROOT_PATH})
|
||||||
|
elif (EXISTS "${SYSROOT_LEGACY_PATH}/")
|
||||||
|
set(TARGET_SYSROOT ${SYSROOT_LEGACY_PATH})
|
||||||
|
endif()
|
||||||
|
if (${TARGET_SYSROOT})
|
||||||
|
set(TARGET_FLAGS "${TARGET_FLAGS} -isysroot ${TARGET_SYSROOT}")
|
||||||
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-syslibroot,${TARGET_SYSROOT}")
|
||||||
endif()
|
endif()
|
||||||
set(TARGET_FLAGS "${TARGET_FLAGS} -isysroot ${TARGET_SYSROOT}")
|
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-syslibroot,/Developer/SDKs/MacOSX10.6.sdk")
|
|
||||||
# Do not warn about frameworks that are not available on all architectures.
|
# Do not warn about frameworks that are not available on all architectures.
|
||||||
# This avoids a warning when linking with QuickTime.
|
# This avoids a warning when linking with QuickTime.
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-no_arch_warnings")
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-no_arch_warnings")
|
||||||
|
Loading…
Reference in New Issue
Block a user