From 173d1f4fb35f009d4aebe6385fb949199c26e53f Mon Sep 17 00:00:00 2001 From: derselbst Date: Sat, 1 Feb 2025 22:30:58 +0100 Subject: [PATCH] debug CI --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a5b446b6a..3227b7363 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,7 +95,7 @@ option ( enable-wasapi "compile Windows WASAPI support (if it is available)" on option ( enable-waveout "compile Windows WaveOut support (if it is available)" on ) option ( enable-winmidi "compile Windows MIDI support (if it is available)" on ) option ( enable-sdl2 "compile SDL2 audio support (if it is available)" off ) -option ( enable-sdl3 "compile SDL3 audio support (if it is available)" off ) +option ( enable-sdl3 "compile SDL3 audio support (if it is available)" on ) option ( enable-pulseaudio "compile PulseAudio support (if it is available)" on ) option ( enable-pipewire "compile PipeWire support (if it is available)" on ) option ( enable-readline "compile readline lib line editing (if it is available)" on ) @@ -686,7 +686,7 @@ endif ( enable-sdl2 ) unset ( SDL3_SUPPORT CACHE ) if ( enable-sdl3 ) - find_package ( SDL3 QUIET CONFIG COMPONENTS SDL3 ) + find_package ( SDL3 CONFIG COMPONENTS SDL3 ) if ( SDL3_FOUND ) message ( STATUS "Found SDL3: ${SDL3_LIBRARIES} (version: ${SDL3_VERSION})" ) set ( SDL3_SUPPORT TRUE )