8b00954ec7
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.
16 lines
No EOL
310 B
CMake
16 lines
No EOL
310 B
CMake
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}) |