visualc: fix sdl3-config.cmake

main
Anonymous Maarten 2023-08-02 17:14:14 +02:00
parent 75a71bde4b
commit 2ed0143425
1 changed files with 18 additions and 14 deletions

View File

@ -1,7 +1,7 @@
# SDL CMake configuration file: # SDL CMake configuration file:
# This file is meant to be placed in a cmake subfolder of SDL3-devel-3.x.y-VC # This file is meant to be placed in a cmake subfolder of SDL3-devel-3.x.y-VC
cmake_minimum_required(VERSION 3.0) cmake_minimum_required(VERSION 3.0...3.5)
include(FeatureSummary) include(FeatureSummary)
set_package_properties(SDL3 PROPERTIES set_package_properties(SDL3 PROPERTIES
@ -39,20 +39,23 @@ else()
return() return()
endif() endif()
set_and_check(_sdl3_prefix "${CMAKE_CURRENT_LIST_DIR}/..") get_filename_component(_sdl3_prefix "${CMAKE_CURRENT_LIST_DIR}/.." ABSOLUTE)
set(_sdl3_include_dirs "${_sdl3_prefix}/include") set_and_check(_sdl3_prefix "${_sdl3_prefix}")
set(_sdl3_include_dirs "${_sdl3_prefix}/include;${_sdl3_prefix}/include/SDL3")
set(_sdl3_library "${_sdl3_prefix}/lib/${_sdl_arch_subdir}/SDL3.lib")
set(_sdl3_dll_library "${_sdl3_prefix}/lib/${_sdl_arch_subdir}/SDL3.dll")
set(_sdl3test_library "${_sdl3_prefix}/lib/${_sdl_arch_subdir}/SDL3_test.lib")
unset(_sdl_arch_subdir)
unset(_sdl3_prefix) unset(_sdl3_prefix)
set(SDL3_LIBRARIES SDL3::SDL3)
set(SDL3TEST_LIBRARY SDL3::SDL3_test)
# 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.
# This is done for compatibility with CMake generated SDL3-target.cmake files. # This is done for compatibility with CMake generated SDL3-target.cmake files.
if(NOT TARGET SDL3::Headers) if(NOT TARGET SDL3::Headers)
add_library(SDL3::Headers INTERFACE IMPORTED) add_library(SDL3::Headers INTERFACE IMPORTED)
set_target_properties(SDL3::SDL3 set_target_properties(SDL3::Headers
PROPERTIES PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_sdl3_include_dirs}" INTERFACE_INCLUDE_DIRECTORIES "${_sdl3_include_dirs}"
) )
@ -60,8 +63,6 @@ endif()
set(SDL3_Headers_FOUND TRUE) set(SDL3_Headers_FOUND TRUE)
unset(_sdl3_include_dirs) unset(_sdl3_include_dirs)
set(_sdl3_library "${SDL3_LIBDIR}/SDL3.lib")
set(_sdl3_dll_library "${SDL3_BINDIR}/SDL3.dll")
if(EXISTS "${_sdl3_library}" AND EXISTS "${_sdl3_dll_library}") if(EXISTS "${_sdl3_library}" AND EXISTS "${_sdl3_dll_library}")
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)
@ -85,7 +86,6 @@ unset(_sdl3_dll_library)
set(SDL3_SDL3-static_FOUND FALSE) set(SDL3_SDL3-static_FOUND FALSE)
set(_sdl3test_library "${SDL3_LIBDIR}/SDL3_test.lib")
if(EXISTS "${_sdl3test_library}") if(EXISTS "${_sdl3test_library}")
if(NOT TARGET SDL3::SDL3_test) if(NOT TARGET SDL3::SDL3_test)
add_library(SDL3::SDL3_test STATIC IMPORTED) add_library(SDL3::SDL3_test STATIC IMPORTED)
@ -103,7 +103,7 @@ else()
endif() endif()
unset(_sdl3test_library) unset(_sdl3test_library)
if(SDL3_SDL3-shared_FOUND OR SDL3_SDL3-static_FOUND) if(SDL3_SDL3-shared_FOUND)
set(SDL3_SDL3_FOUND TRUE) set(SDL3_SDL3_FOUND TRUE)
endif() endif()
@ -121,9 +121,13 @@ endfunction()
if(NOT TARGET SDL3::SDL3) if(NOT TARGET SDL3::SDL3)
if(TARGET SDL3::SDL3-shared) if(TARGET SDL3::SDL3-shared)
_sdl_create_target_alias_compat(SDL3::SDL3 SDL3::SDL3-shared) _sdl_create_target_alias_compat(SDL3::SDL3 SDL3::SDL3-shared)
else()
_sdl_create_target_alias_compat(SDL3::SDL3 SDL3::SDL3-static)
endif() endif()
endif() endif()
check_required_components(SDL3) check_required_components(SDL3)
set(SDL3_LIBRARIES SDL3::SDL3)
set(SDL3_STATIC_LIBRARIES SDL3::SDL3-static)
set(SDL3_STATIC_PRIVATE_LIBS)
set(SDL3TEST_LIBRARY SDL3::SDL3_test)