summaryrefslogtreecommitdiff
path: root/src/ipcpd/udp/CMakeLists.txt
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2026-02-07 13:01:42 +0100
committerSander Vrijders <sander@ouroboros.rocks>2026-02-13 09:22:29 +0100
commitec473cb9a6817bc748c4496a6dba719e7b751368 (patch)
treed7df6f1d5bb64542381a84afb0046bedda7e3eb9 /src/ipcpd/udp/CMakeLists.txt
parent70300bdd48ece3763cc812fee276968767e77b3c (diff)
downloadouroboros-ec473cb9a6817bc748c4496a6dba719e7b751368.tar.gz
ouroboros-ec473cb9a6817bc748c4496a6dba719e7b751368.zip
build: Fix invisible IPCP_TARGET variables
The IPCP_*_TARGET variables (e.g., set(IPCP_LOCAL_TARGET ipcpd-local)) were defined locally in each IPCP's CMakeLists.txt (e.g., CMakeLists.txt), but the configure_file() that substitutes @IPCP_LOCAL_TARGET@ into config.h.in runs in a sibling scope that is processed before ipcpd. Since CMake variables don't propagate between sibling directory scopes, all @IPCP_*_TARGET@ substituted to empty strings, resulting in IPCP_LOCAL_EXEC "". Moved the IPCP_*_TARGET definitions into the cmake/config/ipcp/*.cmake files so they are known when generating config.h. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/ipcpd/udp/CMakeLists.txt')
-rw-r--r--src/ipcpd/udp/CMakeLists.txt3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ipcpd/udp/CMakeLists.txt b/src/ipcpd/udp/CMakeLists.txt
index 159e9bf5..a98f0919 100644
--- a/src/ipcpd/udp/CMakeLists.txt
+++ b/src/ipcpd/udp/CMakeLists.txt
@@ -1,9 +1,6 @@
# UDP IPCPs build configuration (UDP4 and UDP6)
# DDNS detection is in cmake/dependencies/udp/ddns.cmake
-set(IPCP_UDP4_TARGET ipcpd-udp4)
-set(IPCP_UDP6_TARGET ipcpd-udp6)
-
add_executable(${IPCP_UDP4_TARGET} udp4.c ${IPCP_SOURCES})
add_executable(${IPCP_UDP6_TARGET} udp6.c ${IPCP_SOURCES})