Compare commits

..

2 Commits

Author SHA1 Message Date
97529fdd2b Write some matching benchmarks 2024-11-10 15:22:28 +00:00
e4d3b08bf2 Create benchmarking library 2024-11-10 15:22:28 +00:00

View File

@ -6,7 +6,7 @@ function(add_benchmark_suite source)
string(REGEX REPLACE ".c$" "" name ${source})
add_executable(${name} ${source})
set_default_target_options(${name})
target_link_libraries(${name} PRIVATE lib benchmarking)
target_link_libraries(${name} PRIVATE lib benchmarking m)
endfunction()
function(add_benchmark_suites)