2018-07-27 00:01:37 +00:00
|
|
|
add_library(audio_core STATIC
|
2018-08-12 18:32:16 +00:00
|
|
|
algorithm/filter.cpp
|
|
|
|
algorithm/filter.h
|
2018-08-12 18:32:39 +00:00
|
|
|
algorithm/interpolate.cpp
|
|
|
|
algorithm/interpolate.h
|
2018-07-27 00:01:37 +00:00
|
|
|
audio_out.cpp
|
|
|
|
audio_out.h
|
2018-08-04 21:45:14 +00:00
|
|
|
audio_renderer.cpp
|
|
|
|
audio_renderer.h
|
2020-04-21 02:57:30 +00:00
|
|
|
behavior_info.cpp
|
|
|
|
behavior_info.h
|
2018-07-27 00:01:37 +00:00
|
|
|
buffer.h
|
2018-08-03 19:30:01 +00:00
|
|
|
codec.cpp
|
|
|
|
codec.h
|
2020-07-12 11:59:14 +00:00
|
|
|
command_generator.cpp
|
|
|
|
command_generator.h
|
2020-04-21 02:57:30 +00:00
|
|
|
common.h
|
2020-07-12 11:59:14 +00:00
|
|
|
effect_context.cpp
|
|
|
|
effect_context.h
|
|
|
|
info_updater.cpp
|
|
|
|
info_updater.h
|
|
|
|
memory_pool.cpp
|
|
|
|
memory_pool.h
|
|
|
|
mix_context.cpp
|
|
|
|
mix_context.h
|
2018-07-28 17:40:50 +00:00
|
|
|
null_sink.h
|
|
|
|
sink.h
|
2020-07-12 11:59:14 +00:00
|
|
|
sink_context.cpp
|
|
|
|
sink_context.h
|
2018-07-28 17:40:50 +00:00
|
|
|
sink_details.cpp
|
|
|
|
sink_details.h
|
|
|
|
sink_stream.h
|
2020-07-12 11:59:14 +00:00
|
|
|
splitter_context.cpp
|
|
|
|
splitter_context.h
|
2018-08-12 18:32:16 +00:00
|
|
|
stream.cpp
|
|
|
|
stream.h
|
2018-09-08 15:48:13 +00:00
|
|
|
time_stretch.cpp
|
|
|
|
time_stretch.h
|
2020-07-12 11:59:14 +00:00
|
|
|
voice_context.cpp
|
|
|
|
voice_context.h
|
2018-08-07 11:21:56 +00:00
|
|
|
|
|
|
|
$<$<BOOL:${ENABLE_CUBEB}>:cubeb_sink.cpp cubeb_sink.h>
|
2018-07-27 00:01:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
create_target_directory_groups(audio_core)
|
|
|
|
|
2020-09-25 04:28:35 +00:00
|
|
|
if (NOT MSVC)
|
|
|
|
target_compile_options(audio_core PRIVATE
|
2020-10-13 20:00:33 +00:00
|
|
|
-Werror=conversion
|
2020-09-25 04:28:35 +00:00
|
|
|
-Werror=ignored-qualifiers
|
|
|
|
-Werror=implicit-fallthrough
|
|
|
|
-Werror=reorder
|
|
|
|
-Werror=sign-compare
|
2020-10-21 02:07:39 +00:00
|
|
|
-Werror=unused-but-set-parameter
|
|
|
|
-Werror=unused-but-set-variable
|
2020-09-25 04:28:35 +00:00
|
|
|
-Werror=unused-variable
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-07-27 00:01:37 +00:00
|
|
|
target_link_libraries(audio_core PUBLIC common core)
|
2018-08-23 12:33:03 +00:00
|
|
|
target_link_libraries(audio_core PRIVATE SoundTouch)
|
2018-07-28 17:44:50 +00:00
|
|
|
|
|
|
|
if(ENABLE_CUBEB)
|
|
|
|
target_link_libraries(audio_core PRIVATE cubeb)
|
|
|
|
target_compile_definitions(audio_core PRIVATE -DHAVE_CUBEB=1)
|
|
|
|
endif()
|