mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-05-04 20:00:04 +02:00
17 lines
328 B
CMake
17 lines
328 B
CMake
|
|
add_executable(slsMultiReceiver
|
|
mainReceiver.cpp
|
|
)
|
|
set_target_properties(slsMultiReceiver PROPERTIES
|
|
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
|
|
)
|
|
target_link_libraries(slsMultiReceiver
|
|
slsReceiverShared
|
|
pthread
|
|
zmq
|
|
rt
|
|
)
|
|
|
|
install(TARGETS slsMultiReceiver
|
|
RUNTIME DESTINATION bin)
|
|
|