From d54fb6ad005768a11bb03d4702ffa4f780bfcfa1 Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Wed, 20 Aug 2025 10:56:57 +0200 Subject: [PATCH] drivers/audio/CMakeLists.txt: Aligned Cmake with Make Add: fake audio driver https://github.com/apache/nuttx/pull/15295 Signed-off-by: simbit18 --- drivers/audio/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/audio/CMakeLists.txt b/drivers/audio/CMakeLists.txt index c9f34e0b168..fe720bfbf60 100644 --- a/drivers/audio/CMakeLists.txt +++ b/drivers/audio/CMakeLists.txt @@ -85,6 +85,10 @@ if(CONFIG_DRIVERS_AUDIO) list(APPEND SRCS audio_null.c) endif() + if(CONFIG_AUDIO_FAKE) + list(APPEND SRCS audio_fake.c) + endif() + if(CONFIG_AUDIO_TONE) list(APPEND SRCS tone.c) endif()