exclude more stuff from vulkan

This commit is contained in:
lizzie 2025-12-01 02:51:57 +00:00
parent 86ffa7932e
commit 564aac846a
4 changed files with 15 additions and 1 deletions

View file

@ -170,7 +170,11 @@ if (NOT ANDROID)
AddJsonPackage(sdl2)
endif()
find_package(SDL2 2.26.4 REQUIRED)
if (PLATFORM_PS4)
set(SDL2_LIBRARY ${CMAKE_SYSROOT}/lib/libSDL2.a)
set(SDL2_INCLUDE_DIR ${CMAKE_SYSROOT}/include/SDL2)
endif()
find_package(SDL2 REQUIRED)
endif()
set(BUILD_SHARED_LIBS OFF)