cmake: reset check state before testing -fobjc-arc

(cherry picked from commit 517db6d887)
This commit is contained in:
Anonymous Maarten 2023-10-30 20:51:18 +01:00
parent 0f8858cf2d
commit 5f4ddebf76
1 changed files with 5 additions and 3 deletions

View File

@ -3337,9 +3337,11 @@ if(ANDROID)
endif()
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")
cmake_push_check_state(RESET)
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")
endif()
target_compile_options(sdl-build-options INTERFACE "-fobjc-arc")
endif()