mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-29 01:12:22 +02:00
16 lines
306 B
CMake
16 lines
306 B
CMake
file(GLOB SOURCES
|
|
*.cpp)
|
|
|
|
add_executable(sf-buffer sf_buffer.cpp)
|
|
set_target_properties(sf-buffer PROPERTIES OUTPUT_NAME sf_buffer)
|
|
|
|
target_link_libraries(sf-buffer
|
|
core-writer
|
|
external
|
|
zmq
|
|
hdf5
|
|
hdf5_hl
|
|
hdf5_cpp
|
|
boost_system
|
|
pthread)
|