mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-03 17:15:46 +00:00
cmake: check -fobjc-arc compiler flag on Apple platforms
This commit is contained in:
parent
7774de0fe3
commit
20630b2e6c
|
@ -3362,6 +3362,10 @@ if(ANDROID)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
|
check_c_compiler_flag(-fobjc-arc COMPILER_SUPPORTS_-fobjc-arc)
|
||||||
|
if(NOT COMPILER_SUPPORTS_-fobjc-arc)
|
||||||
|
message(FATAL_ERROR "Compiler does not support -fobjc-arc: this is requires on Apple platforms")
|
||||||
|
endif()
|
||||||
target_compile_options(sdl-build-options INTERFACE "-fobjc-arc")
|
target_compile_options(sdl-build-options INTERFACE "-fobjc-arc")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue