From a9aff14f820130e240ab028901b48acbeaf673f8 Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Fri, 3 Jan 2025 12:56:51 +0100 Subject: [PATCH] add missing build file update --- src/actsim_agent/CMakeLists.txt | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/actsim_agent/CMakeLists.txt b/src/actsim_agent/CMakeLists.txt index a167ac6..478a55b 100644 --- a/src/actsim_agent/CMakeLists.txt +++ b/src/actsim_agent/CMakeLists.txt @@ -8,14 +8,24 @@ file( "*.cpp" ) +set(actsim_agent_lib actsim_agent) +set(actsim_agent_lib ${actsim_agent_lib} PARENT_SCOPE) + add_library( - actsim-agent-lib + ${actsim_agent_lib} SHARED ${actsim_agent_SRC} ) target_link_libraries( - actsim-agent-lib + ${actsim_agent_lib} act-cluster-lib -lpqxx -lpq -latomic -) \ No newline at end of file +) + +# specify install targets +install( + TARGETS ${actsim_agent_lib} + DESTINATION lib +) +