Explorar o código

cmake: reset check state before testing -fobjc-arc

Anonymous Maarten %!s(int64=2) %!d(string=hai) anos
pai
achega
5d95cbde37
Modificáronse 1 ficheiros con 4 adicións e 2 borrados
  1. 4 2
      CMakeLists.txt

+ 4 - 2
CMakeLists.txt

@@ -2973,8 +2973,10 @@ if(ANDROID)
 endif()
 
 if(APPLE)
-  check_c_compiler_flag(-fobjc-arc COMPILER_SUPPORTS_-fobjc-arc)
-  if(NOT COMPILER_SUPPORTS_-fobjc-arc)
+  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()
   sdl_compile_options(PRIVATE "-fobjc-arc")