2016-02-21 13:13:52 +00:00
|
|
|
set(SRCS
|
|
|
|
audio_core.cpp
|
2016-03-24 00:12:54 +00:00
|
|
|
codec.cpp
|
2016-02-21 13:13:52 +00:00
|
|
|
hle/dsp.cpp
|
2016-03-26 02:20:34 +00:00
|
|
|
hle/filter.cpp
|
2016-02-21 13:13:52 +00:00
|
|
|
hle/pipe.cpp
|
2016-04-24 20:11:47 +00:00
|
|
|
interpolate.cpp
|
2016-04-28 13:28:59 +00:00
|
|
|
sink_details.cpp
|
2016-02-21 13:13:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(HEADERS
|
|
|
|
audio_core.h
|
2016-03-24 00:12:54 +00:00
|
|
|
codec.h
|
2016-03-26 02:20:34 +00:00
|
|
|
hle/common.h
|
2016-02-21 13:13:52 +00:00
|
|
|
hle/dsp.h
|
2016-03-26 02:20:34 +00:00
|
|
|
hle/filter.h
|
2016-02-21 13:13:52 +00:00
|
|
|
hle/pipe.h
|
2016-04-24 20:11:47 +00:00
|
|
|
interpolate.h
|
2016-04-27 11:04:15 +00:00
|
|
|
null_sink.h
|
2016-02-21 13:13:52 +00:00
|
|
|
sink.h
|
2016-04-28 13:28:59 +00:00
|
|
|
sink_details.h
|
2016-02-21 13:13:52 +00:00
|
|
|
)
|
|
|
|
|
2016-04-24 13:18:30 +00:00
|
|
|
include_directories(../../externals/soundtouch/include)
|
|
|
|
|
2016-02-21 13:13:52 +00:00
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
|
|
|
2016-04-24 13:18:30 +00:00
|
|
|
add_library(audio_core STATIC ${SRCS} ${HEADERS})
|
|
|
|
target_link_libraries(audio_core SoundTouch)
|