mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-12 17:25:35 +02:00
Rename udp receiver
This commit is contained in:
+1
-1
@@ -29,7 +29,7 @@ add_subdirectory(
|
||||
EXCLUDE_FROM_ALL)
|
||||
|
||||
add_subdirectory("core-buffer")
|
||||
add_subdirectory("sf-buffer-recv")
|
||||
add_subdirectory("jf-udp-recv")
|
||||
add_subdirectory("sf-buffer-writer")
|
||||
add_subdirectory("sf-stream")
|
||||
add_subdirectory("sf-writer")
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
file(GLOB SOURCES
|
||||
src/*.cpp)
|
||||
|
||||
add_library(sf-buffer-recv-lib STATIC ${SOURCES})
|
||||
target_include_directories(sf-buffer-recv-lib PUBLIC include/)
|
||||
target_link_libraries(sf-buffer-recv-lib
|
||||
add_library(jf-udp-recv-lib STATIC ${SOURCES})
|
||||
target_include_directories(jf-udp-recv-lib PUBLIC include/)
|
||||
target_link_libraries(jf-udp-recv-lib
|
||||
external
|
||||
core-buffer-lib)
|
||||
|
||||
add_executable(sf-buffer-recv src/main.cpp)
|
||||
set_target_properties(sf-buffer-recv PROPERTIES OUTPUT_NAME sf_buffer)
|
||||
target_link_libraries(sf-buffer-recv
|
||||
sf-buffer-recv-lib
|
||||
add_executable(jf-udp-recv src/main.cpp)
|
||||
set_target_properties(jf-udp-recv PROPERTIES OUTPUT_NAME jf_udp_recv)
|
||||
target_link_libraries(jf-udp-recv
|
||||
jf-udp-recv-lib
|
||||
zmq
|
||||
rt)
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
add_executable(sf-buffer-recv-tests main.cpp)
|
||||
add_executable(jf-udp-recv-tests main.cpp)
|
||||
|
||||
target_link_libraries(sf-buffer-recv-tests
|
||||
target_link_libraries(jf-udp-recv-tests
|
||||
core-buffer-lib
|
||||
sf-buffer-recv-lib
|
||||
jf-udp-recv-lib
|
||||
gtest
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user