mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-12-11 17:12:31 +00:00
cmake: reset check state before testing -fobjc-arc
This commit is contained in:
@@ -2973,8 +2973,10 @@ 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)
|
||||||
|
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")
|
message(FATAL_ERROR "Compiler does not support -fobjc-arc: this is required on Apple platforms")
|
||||||
endif()
|
endif()
|
||||||
sdl_compile_options(PRIVATE "-fobjc-arc")
|
sdl_compile_options(PRIVATE "-fobjc-arc")
|
||||||
|
|||||||
Reference in New Issue
Block a user