Skip to content

Commit

Permalink
Add benchmark for UUID generator.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehpor committed Dec 17, 2024
1 parent 35af4b1 commit 7a3a56a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions benchmarks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,16 @@ 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)
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)

0 comments on commit 7a3a56a

Please sign in to comment.