diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-02-19 00:14:25 +0100 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-02-19 00:14:25 +0100 |
| commit | a9ebc3b434b7979163fdf83984b32f1e513dacb8 (patch) | |
| tree | c801a98f44689669c905e833371fa539f4934a1f /CMakeLists.txt | |
| parent | bdc2305c2376c8b6697b6ecfecce104c956bdfcf (diff) | |
| download | BobinkCOpcUa-a9ebc3b434b7979163fdf83984b32f1e513dacb8.tar.gz BobinkCOpcUa-a9ebc3b434b7979163fdf83984b32f1e513dacb8.zip | |
Rename client executable to bobink_opcua_client
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 5 insertions, 4 deletions
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) |
