mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-21 01:44:36 +02:00
12 lines
271 B
CMake
12 lines
271 B
CMake
add_subdirectory(external/)
|
|
|
|
file(GLOB SOURCES
|
|
src/*.cpp)
|
|
|
|
add_library(core-buffer-lib STATIC ${SOURCES})
|
|
target_include_directories(core-buffer-lib PUBLIC include/)
|
|
target_link_libraries(core-buffer-lib
|
|
external)
|
|
|
|
enable_testing()
|
|
add_subdirectory(test/) |