From c09f7f78640fbaec810d5c5cecacb8367885f052 Mon Sep 17 00:00:00 2001 From: raiden00pl Date: Sat, 1 Jun 2024 10:10:49 +0200 Subject: [PATCH] cmake: add missing arp_acd.c file --- net/arp/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/net/arp/CMakeLists.txt b/net/arp/CMakeLists.txt index 4b91c48951..eb65fbf8a2 100644 --- a/net/arp/CMakeLists.txt +++ b/net/arp/CMakeLists.txt @@ -33,5 +33,9 @@ if(CONFIG_NET_ARP) list(APPEND SRCS arp_dump.c) endif() + if(CONFIG_NET_ARP_ACD) + list(APPEND SRCS arp_acd.c) + endif() + target_sources(net PRIVATE ${SRCS}) endif()