Compare commits

..

2 Commits

Author SHA1 Message Date
5d109f5f06 Write some matching benchmarks 2024-11-10 15:17:00 +00:00
e1b5725e74 Create benchmarking library 2024-11-10 15:17:00 +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 m)
target_link_libraries(${name} PRIVATE lib benchmarking)
endfunction()
function(add_benchmark_suites)