From a9ebc3b434b7979163fdf83984b32f1e513dacb8 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Thu, 19 Feb 2026 00:14:25 +0100 Subject: Rename client executable to bobink_opcua_client --- CMakeLists.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 0a0870c..1d9f7a8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,8 +4,9 @@ # # Builds three programs that demonstrate OPC UA discovery. # bobink_opcua_discovery_server runs a Local Discovery Server. -# bobink_opcua_server periodically registers itself with the LDS. client -# queries servers for discovery info, endpoints, or current time. +# bobink_opcua_server periodically registers itself with the LDS. +# bobink_opcua_client queries servers for discovery info, endpoints, or current +# time. # # All programs link against common (shared helpers and config parser) which in # turn depends on open62541. @@ -28,8 +29,8 @@ add_library(common STATIC src/common.c src/config.c) target_link_libraries(common open62541::open62541) # Unified client: find-servers, get-endpoints, read-time. -add_executable(client src/client.c) -target_link_libraries(client common) +add_executable(bobink_opcua_client src/bobink_opcua_client.c) +target_link_libraries(bobink_opcua_client common) # Runs the Local Discovery Server that other servers register with. add_executable(bobink_opcua_discovery_server src/server_lds.c) -- cgit v1.2.3