mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-05 19:08:12 +00:00
cmake: check -fobjc-arc compiler flag on Apple platforms
This commit is contained in:
@@ -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()
|
||||
|
||||
|
Reference in New Issue
Block a user