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

fix villas tools installation

Signed-off-by: Philipp Jungkamp <Philipp.Jungkamp@opal-rt.com>
This commit is contained in:
Philipp Jungkamp 2023-06-15 17:49:40 +02:00
parent 9916a6b3d2
commit 6de8ea1147
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