Apple: Had to add this to build on Mavericks, for some reason.

This commit is contained in:
Henrik Rydgård 2013-10-31 11:54:59 +01:00
parent 43240515de
commit bc63867f1d

View File

@ -477,7 +477,7 @@ elseif(SDL_FOUND)
endif()
set(TargetBin PPSSPPSDL)
else()
message(FATAL_ERROR "Could not find SDL. Failing.")
message(FATAL_ERROR "Could not find SDL. Failing.")
endif()
if(X86)
@ -1295,6 +1295,10 @@ if(APPLE)
set_target_properties(zlib PROPERTIES COMPILE_FLAGS "-O3")
endif()
if(APPLE AND NOT IOS)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -F /Library/Frameworks")
endif()
# packaging and code signing
if(IOS)
add_dependencies(PPSSPP ${CoreLibName} GPU Common native)