|
@@ -1,5 +1,5 @@
|
|
-# SDL CMake configuration file:
|
|
|
|
-# This file is meant to be placed in share/cmake/SDL3, next to SDL3.xcframework
|
|
|
|
|
|
+# SDL3 CMake configuration file:
|
|
|
|
+# This file is meant to be placed in Resources/CMake of a SDL3 framework
|
|
|
|
|
|
# INTERFACE_LINK_OPTIONS needs CMake 3.12
|
|
# INTERFACE_LINK_OPTIONS needs CMake 3.12
|
|
cmake_minimum_required(VERSION 3.12)
|
|
cmake_minimum_required(VERSION 3.12)
|
|
@@ -31,49 +31,15 @@ endmacro()
|
|
|
|
|
|
set(SDL3_FOUND TRUE)
|
|
set(SDL3_FOUND TRUE)
|
|
|
|
|
|
-macro(_check_target_is_simulator)
|
|
|
|
- include(CheckCSourceCompiles)
|
|
|
|
- check_c_source_compiles([===[
|
|
|
|
- #include <TargetConditionals.h>
|
|
|
|
- #if defined(TARGET_OS_SIMULATOR)
|
|
|
|
- int target_is_simulator;
|
|
|
|
- #endif
|
|
|
|
- int main(int argc, char *argv[]) { return target_is_simulator; }
|
|
|
|
- ]===] SDL_TARGET_IS_SIMULATOR)
|
|
|
|
-endmacro()
|
|
|
|
-
|
|
|
|
-if(CMAKE_SYSTEM_NAME STREQUAL "iOS")
|
|
|
|
- _check_target_is_simulator()
|
|
|
|
- if(SDL_TARGET_IS_SIMULATOR)
|
|
|
|
- set(_xcfw_target_subdir "ios-arm64_x86_64-simulator")
|
|
|
|
- else()
|
|
|
|
- set(_xcfw_target_subdir "ios-arm64")
|
|
|
|
- endif()
|
|
|
|
-elseif(CMAKE_SYSTEM_NAME STREQUAL "tvOS")
|
|
|
|
- _check_target_is_simulator()
|
|
|
|
- if(SDL_TARGET_IS_SIMULATOR)
|
|
|
|
- set(_xcfw_target_subdir "tvos-arm64_x86_64-simulator")
|
|
|
|
- else()
|
|
|
|
- set(_xcfw_target_subdir "tvos-arm64")
|
|
|
|
- endif()
|
|
|
|
-elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
|
|
|
- set(_xcfw_target_subdir "macos-arm64_x86_64")
|
|
|
|
-else()
|
|
|
|
- message(WARNING "Unsupported Apple platform (${CMAKE_SYSTEM_NAME}) and broken sdl3-config-version.cmake")
|
|
|
|
- set(SDL3_FOUND FALSE)
|
|
|
|
- return()
|
|
|
|
-endif()
|
|
|
|
-
|
|
|
|
# Compute the installation prefix relative to this file.
|
|
# Compute the installation prefix relative to this file.
|
|
-get_filename_component(_sdl3_xcframework_parent_path "${CMAKE_CURRENT_LIST_DIR}" REALPATH) # /share/cmake/SDL3/
|
|
|
|
-get_filename_component(_sdl3_xcframework_parent_path "${_sdl3_xcframework_parent_path}" REALPATH) # /share/cmake/SDL3/
|
|
|
|
-get_filename_component(_sdl3_xcframework_parent_path "${_sdl3_xcframework_parent_path}" PATH) # /share/cmake
|
|
|
|
-get_filename_component(_sdl3_xcframework_parent_path "${_sdl3_xcframework_parent_path}" PATH) # /share
|
|
|
|
-get_filename_component(_sdl3_xcframework_parent_path "${_sdl3_xcframework_parent_path}" PATH) # /
|
|
|
|
-set_and_check(_sdl3_xcframework_path "${_sdl3_xcframework_parent_path}/SDL3.xcframework") # /SDL3.xcframework
|
|
|
|
-set_and_check(_sdl3_framework_parent_path "${_sdl3_xcframework_path}/${_xcfw_target_subdir}") # /SDL3.xcframework/macos-arm64_x86_64
|
|
|
|
-set_and_check(_sdl3_framework_path "${_sdl3_framework_parent_path}/SDL3.framework") # /SDL3.xcframework/macos-arm64_x86_64/SDL3.framework
|
|
|
|
-set_and_check(_sdl3_include_dirs "${_sdl3_framework_path}/Headers")
|
|
|
|
|
|
+set(_sdl3_framework_path "${CMAKE_CURRENT_LIST_DIR}") # > /SDL3.framework/Resources/CMake/
|
|
|
|
+get_filename_component(_sdl3_framework_path "${_sdl3_framework_path}" REALPATH) # > /SDL3.framework/Versions/Current/Resources/CMake
|
|
|
|
+get_filename_component(_sdl3_framework_path "${_sdl3_framework_path}" REALPATH) # > /SDL3.framework/Versions/A/Resources/CMake/
|
|
|
|
+get_filename_component(_sdl3_framework_path "${_sdl3_framework_path}" PATH) # > /SDL3.framework/Versions/A/Resources/
|
|
|
|
+get_filename_component(_sdl3_framework_path "${_sdl3_framework_path}" PATH) # > /SDL3.framework/Versions/A/
|
|
|
|
+get_filename_component(_sdl3_framework_path "${_sdl3_framework_path}" PATH) # > /SDL3.framework/Versions/
|
|
|
|
+get_filename_component(_sdl3_framework_path "${_sdl3_framework_path}" PATH) # > /SDL3.framework/
|
|
|
|
+get_filename_component(_sdl3_framework_parent_path "${_sdl3_framework_path}" PATH) # > /
|
|
|
|
|
|
|
|
|
|
# All targets are created, even when some might not be requested though COMPONENTS.
|
|
# All targets are created, even when some might not be requested though COMPONENTS.
|
|
@@ -84,30 +50,17 @@ if(NOT TARGET SDL3::Headers)
|
|
set_target_properties(SDL3::Headers
|
|
set_target_properties(SDL3::Headers
|
|
PROPERTIES
|
|
PROPERTIES
|
|
INTERFACE_COMPILE_OPTIONS "SHELL:-F \"${_sdl3_framework_parent_path}\""
|
|
INTERFACE_COMPILE_OPTIONS "SHELL:-F \"${_sdl3_framework_parent_path}\""
|
|
- INTERFACE_INCLUDE_DIRECTORIES "${_sdl3_include_dirs}"
|
|
|
|
)
|
|
)
|
|
endif()
|
|
endif()
|
|
set(SDL3_Headers_FOUND TRUE)
|
|
set(SDL3_Headers_FOUND TRUE)
|
|
|
|
|
|
if(NOT TARGET SDL3::SDL3-shared)
|
|
if(NOT TARGET SDL3::SDL3-shared)
|
|
add_library(SDL3::SDL3-shared SHARED IMPORTED)
|
|
add_library(SDL3::SDL3-shared SHARED IMPORTED)
|
|
- if(CMAKE_VERSION GREATER_EQUAL "3.28")
|
|
|
|
- set_target_properties(SDL3::SDL3-shared
|
|
|
|
- PROPERTIES
|
|
|
|
- FRAMEWORK "TRUE"
|
|
|
|
- IMPORTED_LOCATION "${_sdl3_xcframework_path}"
|
|
|
|
- INTERFACE_LINK_LIBRARIES "SDL3::Headers"
|
|
|
|
- )
|
|
|
|
- else()
|
|
|
|
- set_target_properties(SDL3::SDL3-shared
|
|
|
|
- PROPERTIES
|
|
|
|
- FRAMEWORK "TRUE"
|
|
|
|
- IMPORTED_LOCATION "${_sdl3_framework_path}/SDL3"
|
|
|
|
- INTERFACE_LINK_LIBRARIES "SDL3::Headers"
|
|
|
|
- )
|
|
|
|
- endif()
|
|
|
|
set_target_properties(SDL3::SDL3-shared
|
|
set_target_properties(SDL3::SDL3-shared
|
|
PROPERTIES
|
|
PROPERTIES
|
|
|
|
+ FRAMEWORK "TRUE"
|
|
|
|
+ IMPORTED_LOCATION "${_sdl3_framework_path}/SDL3"
|
|
|
|
+ INTERFACE_LINK_LIBRARIES "SDL3::Headers"
|
|
COMPATIBLE_INTERFACE_BOOL "SDL3_SHARED"
|
|
COMPATIBLE_INTERFACE_BOOL "SDL3_SHARED"
|
|
INTERFACE_SDL3_SHARED "ON"
|
|
INTERFACE_SDL3_SHARED "ON"
|
|
COMPATIBLE_INTERFACE_STRING "SDL_VERSION"
|
|
COMPATIBLE_INTERFACE_STRING "SDL_VERSION"
|
|
@@ -120,11 +73,8 @@ set(SDL3_SDL3-static FALSE)
|
|
|
|
|
|
set(SDL3_SDL3_test FALSE)
|
|
set(SDL3_SDL3_test FALSE)
|
|
|
|
|
|
-unset(_sdl3_xcframework_parent_path)
|
|
|
|
-unset(_sdl3_xcframework_path)
|
|
|
|
unset(_sdl3_framework_parent_path)
|
|
unset(_sdl3_framework_parent_path)
|
|
unset(_sdl3_framework_path)
|
|
unset(_sdl3_framework_path)
|
|
-unset(_sdl3_include_dirs)
|
|
|
|
|
|
|
|
if(SDL3_SDL3-shared_FOUND)
|
|
if(SDL3_SDL3-shared_FOUND)
|
|
set(SDL3_SDL3_FOUND TRUE)
|
|
set(SDL3_SDL3_FOUND TRUE)
|