CMake does not support linker groups, which were used to "automatically" fix circular dependencies between different static FAIL* libraries and the ordering of dynamic external libraries broke linking. CMake can however correctly invoke the linker if dependencies are decribed correctly (even if circular). This required changing all add_dependencies calls between libraries to target_link_libraries (which creates a link-time dependency) and linking all experiments to fail-sal. Change-Id: I3a0d5dddb9b3d963ef538814e20d6b3de85d4ec5
36 lines
1.2 KiB
CMake
36 lines
1.2 KiB
CMake
set(EXPERIMENT_NAME vezs-example)
|
|
set(EXPERIMENT_TYPE VEZSExperiment)
|
|
configure_file(../instantiate-experiment.ah.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/instantiate-${EXPERIMENT_NAME}.ah @ONLY
|
|
)
|
|
|
|
## Setup desired protobuf descriptions HERE ##
|
|
set(MY_PROTOS
|
|
# vezs-example.proto
|
|
)
|
|
|
|
set(MY_CAMPAIGN_SRCS
|
|
experiment.hpp
|
|
experiment.cc
|
|
#campaign.hpp
|
|
#campaign.cc
|
|
)
|
|
|
|
#### PROTOBUFS ####
|
|
find_package(Protobuf REQUIRED)
|
|
include_directories(${PROTOBUF_INCLUDE_DIRS})
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
#PROTOBUF_GENERATE_CPP(PROTO_SRCS PROTO_HDRS ${MY_PROTOS})
|
|
|
|
## Build library
|
|
add_library(fail-${EXPERIMENT_NAME} ${PROTO_SRCS} ${PROTO_HDRS} ${MY_CAMPAIGN_SRCS})
|
|
add_dependencies(fail-${EXPERIMENT_NAME} fail-comm)
|
|
target_link_libraries(fail-${EXPERIMENT_NAME} fail-comm)
|
|
target_link_libraries(fail-${EXPERIMENT_NAME} ${PROTOBUF_LIBRARY})
|
|
|
|
## This is the example's campaign server distributing experiment parameters
|
|
#add_executable(${EXPERIMENT_NAME}-server main.cc)
|
|
#target_link_libraries(${EXPERIMENT_NAME}-server fail-${EXPERIMENT_NAME} fail ${PROTOBUF_LIBRARY} ${Boost_THREAD_LIBRARY})
|
|
#install(TARGETS ${EXPERIMENT_NAME}-server RUNTIME DESTINATION bin)
|