mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-21 11:17:58 +02:00
add network_io folder
This commit is contained in:
15
network_io/CMakeLists.txt
Normal file
15
network_io/CMakeLists.txt
Normal file
@ -0,0 +1,15 @@
|
||||
add_library(network_io STATIC src/ZmqSocketReceiver.cpp)
|
||||
target_include_directories(network_io PUBLIC include)
|
||||
target_link_libraries(network_io PRIVATE libzmq fmt::fmt core utils aare_compiler_flags)
|
||||
|
||||
if(AARE_PYTHON_BINDINGS)
|
||||
set_property(TARGET file_io PROPERTY POSITION_INDEPENDENT_CODE ON)
|
||||
endif()
|
||||
|
||||
# if(AARE_TESTS)
|
||||
# set(TestSources
|
||||
# ${CMAKE_CURRENT_SOURCE_DIR}/test/NumpyFile.test.cpp
|
||||
# )
|
||||
# target_sources(tests PRIVATE ${TestSources} )
|
||||
# target_link_libraries(tests PRIVATE core network_io)
|
||||
# endif()
|
Reference in New Issue
Block a user