cmake: check -fobjc-arc compiler flag on Apple platforms
parent
4aacc4b92e
commit
f18120c83c
|
@ -2973,6 +2973,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 required on Apple platforms")
|
||||||
|
endif()
|
||||||
sdl_compile_options(PRIVATE "-fobjc-arc")
|
sdl_compile_options(PRIVATE "-fobjc-arc")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue