Преглед на файлове

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

Anonymous Maarten преди 1 година
родител
ревизия
20630b2e6c
променени са 1 файла, в които са добавени 4 реда и са изтрити 0 реда
  1. 4 0
      CMakeLists.txt

+ 4 - 0
CMakeLists.txt

@@ -3362,6 +3362,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 requires on Apple platforms")
+  endif()
   target_compile_options(sdl-build-options INTERFACE "-fobjc-arc")
 endif()