mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 19:58:07 -05:00
AudioCore: Skeleton Implementation
This commit: * Adds a new subproject, audio_core. * Defines structures that exist in DSP shared memory. * Hooks up various other parts of the emulator into audio core. This sets the foundation for a later HLE DSP implementation.
This commit is contained in:
16
src/audio_core/CMakeLists.txt
Normal file
16
src/audio_core/CMakeLists.txt
Normal file
@ -0,0 +1,16 @@
|
||||
set(SRCS
|
||||
audio_core.cpp
|
||||
hle/dsp.cpp
|
||||
hle/pipe.cpp
|
||||
)
|
||||
|
||||
set(HEADERS
|
||||
audio_core.h
|
||||
hle/dsp.h
|
||||
hle/pipe.h
|
||||
sink.h
|
||||
)
|
||||
|
||||
create_directory_groups(${SRCS} ${HEADERS})
|
||||
|
||||
add_library(audio_core STATIC ${SRCS} ${HEADERS})
|
Reference in New Issue
Block a user