From 2b632bd229edaa9999be5043f9a8ae2ac7d17e41 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Thu, 19 Feb 2026 06:19:23 +0100 Subject: Add configurable variable node initialization for server_register New optional CLI argument [nodes-config] lets the server populate its address space from a dot-indexed config file (node.N.name/type/value/ accessLevel/description). Supports 10 scalar types plus 1D arrays. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 9be6ab9..d38f0bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ include(cmake/BuildDeps.cmake) # Shared helpers (file loading, security factories, config parser) used by all # three programs. -add_library(common STATIC src/common.c src/config.c) +add_library(common STATIC src/common.c src/config.c src/nodes_config.c) target_link_libraries(common open62541::open62541) # Unified client: find-servers, get-endpoints, read-time. -- cgit v1.3.1