mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-01-09 16:03:21 +00:00
16 lines
310 B
CMake
16 lines
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})
|