4c235955cf
AudioCore: Implement interpolation
26 lines
586 B
CMake
26 lines
586 B
CMake
set(SRCS
|
|
audio_core.cpp
|
|
codec.cpp
|
|
hle/dsp.cpp
|
|
hle/filter.cpp
|
|
hle/pipe.cpp
|
|
interpolate.cpp
|
|
)
|
|
|
|
set(HEADERS
|
|
audio_core.h
|
|
codec.h
|
|
hle/common.h
|
|
hle/dsp.h
|
|
hle/filter.h
|
|
hle/pipe.h
|
|
interpolate.h
|
|
sink.h
|
|
)
|
|
|
|
include_directories(../../externals/soundtouch/include)
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
|
|
add_library(audio_core STATIC ${SRCS} ${HEADERS})
|
|
target_link_libraries(audio_core SoundTouch)
|