mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-18 14:18:02 -05:00
AudioCore: SDL2 Sink
This commit is contained in:
@ -23,7 +23,18 @@ set(HEADERS
|
||||
|
||||
include_directories(../../externals/soundtouch/include)
|
||||
|
||||
if(SDL2_FOUND)
|
||||
set(SRCS ${SRCS} sdl2_sink.cpp)
|
||||
set(HEADERS ${HEADERS} sdl2_sink.h)
|
||||
include_directories(${SDL2_INCLUDE_DIR})
|
||||
endif()
|
||||
|
||||
create_directory_groups(${SRCS} ${HEADERS})
|
||||
|
||||
add_library(audio_core STATIC ${SRCS} ${HEADERS})
|
||||
target_link_libraries(audio_core SoundTouch)
|
||||
|
||||
if(SDL2_FOUND)
|
||||
target_link_libraries(audio_core ${SDL2_LIBRARY})
|
||||
set_property(TARGET audio_core APPEND PROPERTY COMPILE_DEFINITIONS HAVE_SDL2)
|
||||
endif()
|
||||
|
Reference in New Issue
Block a user