add missing build file update
This commit is contained in:
parent
af9343ac49
commit
a9aff14f82
1 changed files with 13 additions and 3 deletions
|
|
@ -8,14 +8,24 @@ file(
|
||||||
"*.cpp"
|
"*.cpp"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
set(actsim_agent_lib actsim_agent)
|
||||||
|
set(actsim_agent_lib ${actsim_agent_lib} PARENT_SCOPE)
|
||||||
|
|
||||||
add_library(
|
add_library(
|
||||||
actsim-agent-lib
|
${actsim_agent_lib}
|
||||||
SHARED
|
SHARED
|
||||||
${actsim_agent_SRC}
|
${actsim_agent_SRC}
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(
|
target_link_libraries(
|
||||||
actsim-agent-lib
|
${actsim_agent_lib}
|
||||||
act-cluster-lib
|
act-cluster-lib
|
||||||
-lpqxx -lpq -latomic
|
-lpqxx -lpq -latomic
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# specify install targets
|
||||||
|
install(
|
||||||
|
TARGETS ${actsim_agent_lib}
|
||||||
|
DESTINATION lib
|
||||||
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue