From 50bbad510a50454924ec2577ea4d20e2c251937e Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Wed, 20 Aug 2025 11:13:54 +0200 Subject: [PATCH] drivers/leds/CMakeLists.txt: Aligned Cmake with Make Add: KTD2052 led driver #16217 Signed-off-by: simbit18 --- drivers/leds/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/leds/CMakeLists.txt b/drivers/leds/CMakeLists.txt index eb292f16da..70ffdbbaaa 100644 --- a/drivers/leds/CMakeLists.txt +++ b/drivers/leds/CMakeLists.txt @@ -34,6 +34,10 @@ if(CONFIG_LEDS_APA102) list(APPEND SRCS apa102.c) endif() +if(CONFIG_KTD2052) + list(APPEND SRCS ktd2052.c) +endif() + if(CONFIG_LEDS_MAX7219) list(APPEND SRCS max7219.c) endif()