浏览代码

cmake: reset check state before testing -fobjc-arc

Anonymous Maarten 1 年之前
父节点
当前提交
517db6d887
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. 5 3
      CMakeLists.txt

+ 5 - 3
CMakeLists.txt

@@ -3362,9 +3362,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()