diff --git a/benchmarks/CMakeLists.txt b/benchmarks/CMakeLists.txt index a76ebf1e..b9c54288 100644 --- a/benchmarks/CMakeLists.txt +++ b/benchmarks/CMakeLists.txt @@ -39,6 +39,11 @@ add_executable(hash_map hash_map.cpp) target_include_directories(hash_map PUBLIC ../catkit_core) target_link_libraries(hash_map PUBLIC catkit_core) +# Uuid generator benchmark +add_executable(uuid_generator uuid_generator.cpp) +target_include_directories(uuid_generator PUBLIC ../catkit_core) +target_link_libraries(uuid_generator PUBLIC catkit_core) + # Add install files install(TARGETS datastream_latency DESTINATION bin) install(TARGETS datastream_submit DESTINATION bin) @@ -46,3 +51,4 @@ install(TARGETS timestamp DESTINATION bin) install(TARGETS free_list_allocator DESTINATION bin) install(TARGETS pool_allocator DESTINATION bin) install(TARGETS hash_map DESTINATION bin) +install(TARGETS uuid_generator DESTINATION bin)