1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

Merge pull request #660 from VILLASframework/villas-tools

fix villas tools installation
This commit is contained in:
Steffen Vogel 2023-06-17 03:05:51 +02:00 committed by GitHub
commit 5a78b9d69f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -44,6 +44,8 @@ endif()
if(WITH_GRAPHVIZ)
add_executable(villas-graph villas-graph.cpp)
target_link_libraries(villas-graph PUBLIC villas)
list(APPEND SRCS villas-graph)
endif()
if(WITH_WEB)
@ -64,8 +66,8 @@ endif()
if(LIBZMQ_FOUND)
add_executable(villas-zmq-keygen villas-zmq-keygen.cpp)
target_link_libraries(villas-zmq-keygen PUBLIC villas-common PkgConfig::LIBZMQ)
list(APPEND SRC villas-zmq-keygen)
list(APPEND SRCS villas-zmq-keygen)
endif()
if(WITH_HOOKS)

View file

@ -13,7 +13,7 @@
###################################################################################
# Get a list of all available tools
SUBTOOLS="node compare pipe hook conf2json convert graph relay signal test-config test-rtt zmq-keygen"
SUBTOOLS="api node compare pipe hook conf2json convert graph relay signal test-config test-rtt zmq-keygen"
# First argument to wrapper is the tool which should be started
SUBTOOL=$1