From ab756fd068c45fd1b3e3d0216b78c39a741214ae Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 26 Jul 2018 20:01:37 -0400 Subject: audio_core: Add initial code for keeping track of audout state. --- src/audio_core/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/audio_core/CMakeLists.txt (limited to 'src/audio_core/CMakeLists.txt') diff --git a/src/audio_core/CMakeLists.txt b/src/audio_core/CMakeLists.txt new file mode 100644 index 000000000..f00a55994 --- /dev/null +++ b/src/audio_core/CMakeLists.txt @@ -0,0 +1,11 @@ +add_library(audio_core STATIC + audio_out.cpp + audio_out.h + buffer.h + stream.cpp + stream.h +) + +create_target_directory_groups(audio_core) + +target_link_libraries(audio_core PUBLIC common core) -- cgit v1.2.3