You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
586 B

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)