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

From 20630b2e6c02e40b5da12cccb7e74ef2b8fdfc08 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Mon, 30 Oct 2023 19:56:46 +0100
Subject: [PATCH] cmake: check -fobjc-arc compiler flag on Apple platforms

---
 CMakeLists.txt | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0a0d608c6ef7..67cdb6908cc9 100644
--- a/CMakeLists.txt
+++ b/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()