Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions kvbc/tools/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
add_subdirectory(db_editor)
add_subdirectory(migrations)
add_subdirectory(object_store_utility)
add_subdirectory(state_snapshot_with_acl)
8 changes: 8 additions & 0 deletions kvbc/tools/state_snapshot_with_acl/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
find_package(Boost ${MIN_BOOST_VERSION} COMPONENTS program_options REQUIRED)

add_executable(state_snapshot_with_acl_tool state_snapshot_with_acl_tool.cpp)
target_link_libraries(state_snapshot_with_acl_tool PUBLIC
kvbc
util
${Boost_LIBRARIES}
)
Loading