mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-01 17:02:22 +02:00
17 lines
368 B
CMake
17 lines
368 B
CMake
add_executable(sf-buffer src/sf_buffer.cpp)
|
|
|
|
set_target_properties(sf-buffer PROPERTIES OUTPUT_NAME sf_buffer)
|
|
target_include_directories(sf-buffer PUBLIC src/)
|
|
|
|
target_link_libraries(sf-buffer
|
|
core-writer
|
|
external
|
|
zmq
|
|
hdf5
|
|
hdf5_hl
|
|
hdf5_cpp
|
|
boost_system
|
|
pthread)
|
|
|
|
enable_testing()
|
|
add_subdirectory(test/) |