cmake: fix empty framework prefix on MacOS

This commit is contained in:
a dinosaur 2024-03-09 21:20:08 +11:00 committed by Sam Lantinga
parent b6c5ad0075
commit 41baf23e44
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ set(SDL3_FOUND TRUE)
# Compute the installation prefix relative to this file.
get_filename_component(_sdl3_framework_path "${CMAKE_CURRENT_LIST_FILE}" PATH) # /SDL3.framework/Resources/CMake/
get_filename_component(_sdl3_framework_path "${_IMPORT_PREFIX}" PATH) # /SDL3.framework/Resources/
get_filename_component(_sdl3_framework_path "${_IMPORT_PREFIX}" PATH) # /SDL3.framework/
get_filename_component(_sdl3_framework_path "${_sdl3_framework_path}" PATH) # /SDL3.framework/Resources/
get_filename_component(_sdl3_framework_path "${_sdl3_framework_path}" PATH) # /SDL3.framework/
get_filename_component(_sdl3_framework_parent_path "${_sdl3_framework_path}" PATH) # /
set_and_check(_sdl3_include_dirs "${_sdl3_framework_path}/Headers")