8 lines
311 B
CMake
8 lines
311 B
CMake
find_package(benchmark REQUIRED)
|
|
|
|
add_executable(pipeline.test pipeline.test.cpp)
|
|
target_compile_features(pipeline.test PUBLIC cxx_std_23)
|
|
target_link_libraries(pipeline.test benchmark::benchmark_main
|
|
pipeline::pipeline joboccara::pipes)
|
|
add_test(NAME pipeline.test COMMAND pipeline.test)
|