diff options
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) |
