mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-23 00:25:27 +00:00
cmake: reset check state before testing -fobjc-arc
This commit is contained in:
parent
20630b2e6c
commit
517db6d887
|
@ -3362,9 +3362,11 @@ if(ANDROID)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
check_c_compiler_flag(-fobjc-arc COMPILER_SUPPORTS_-fobjc-arc)
|
cmake_push_check_state(RESET)
|
||||||
if(NOT COMPILER_SUPPORTS_-fobjc-arc)
|
check_c_compiler_flag(-fobjc-arc COMPILER_SUPPORTS_FOBJC_ARC)
|
||||||
message(FATAL_ERROR "Compiler does not support -fobjc-arc: this is requires on Apple platforms")
|
cmake_pop_check_state()
|
||||||
|
if(NOT COMPILER_SUPPORTS_FOBJC_ARC)
|
||||||
|
message(FATAL_ERROR "Compiler does not support -fobjc-arc: this is required on Apple platforms")
|
||||||
endif()
|
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