소스 검색

cmake: check -fobjc-arc compiler flag on Apple platforms

Anonymous Maarten 2 년 전
부모
커밋
f18120c83c
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      CMakeLists.txt

+ 4 - 0
CMakeLists.txt

@@ -2973,6 +2973,10 @@ 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 required on Apple platforms")
+  endif()
   sdl_compile_options(PRIVATE "-fobjc-arc")
 endif()