diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-06 09:13:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-06 09:13:06 -0400 |
| commit | 69949e7964effcdfc5f101cadaf95d7c430ae677 (patch) | |
| tree | 30961426a1e754309e1bf8760df1fea4e51bdef8 /src/audio_core/CMakeLists.txt | |
| parent | 5e424d791bd98c18a81a36405a419237abcc8116 (diff) | |
| parent | ebd19dec99d9809a669f63294745d7c8facc6d31 (diff) | |
Merge pull request #11428 from Kelebek1/adsp_rework
Rework ADSP into a wrapper for apps
Diffstat (limited to 'src/audio_core/CMakeLists.txt')
| -rw-r--r-- | src/audio_core/CMakeLists.txt | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/audio_core/CMakeLists.txt b/src/audio_core/CMakeLists.txt index e7b595459..67dfe0290 100644 --- a/src/audio_core/CMakeLists.txt +++ b/src/audio_core/CMakeLists.txt @@ -2,6 +2,14 @@ # SPDX-License-Identifier: GPL-2.0-or-later add_library(audio_core STATIC + adsp/adsp.cpp + adsp/adsp.h + adsp/mailbox.h + adsp/apps/audio_renderer/audio_renderer.cpp + adsp/apps/audio_renderer/audio_renderer.h + adsp/apps/audio_renderer/command_buffer.h + adsp/apps/audio_renderer/command_list_processor.cpp + adsp/apps/audio_renderer/command_list_processor.h audio_core.cpp audio_core.h audio_event.h @@ -32,13 +40,6 @@ add_library(audio_core STATIC out/audio_out_system.cpp out/audio_out_system.h precompiled_headers.h - renderer/adsp/adsp.cpp - renderer/adsp/adsp.h - renderer/adsp/audio_renderer.cpp - renderer/adsp/audio_renderer.h - renderer/adsp/command_buffer.h - renderer/adsp/command_list_processor.cpp - renderer/adsp/command_list_processor.h renderer/audio_device.cpp renderer/audio_device.h renderer/audio_renderer.h |
