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 pipe) add_test(NAME pipeline.test COMMAND pipeline.test) find_package(GTest REQUIRED) add_executable(pipe.test pipe.test.cpp) target_compile_features(pipe.test PUBLIC cxx_std_23) target_link_libraries(pipe.test GTest::gtest_main pipe)