summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e7510343..f834aceb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -12,5 +12,10 @@ if(BUILD_TESTING)
target_link_libraries(${name} PRIVATE stc m)
add_test(NAME ${name} COMMAND ${name})
endforeach()
+ foreach(name IN ITEMS cdeq clist cmap csmap cvec)
+ add_executable(${name} benchmarks/${name}_benchmark.cpp)
+ target_link_libraries(${name} PRIVATE stc m)
+ add_test(NAME ${name} COMMAND ${name})
+ endforeach()
endif()