mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-07 15:10:49 +00:00
cmake: check -fobjc-arc compiler flag on Apple platforms
This commit is contained in:
parent
4aacc4b92e
commit
f18120c83c
1 changed files with 4 additions and 0 deletions
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue