add cmake option to include RocksDB Tools with the Rocks DB compile
This commit is contained in:
parent
61aaca005e
commit
f94eada7c0
|
@ -22,8 +22,8 @@ set(RocksDB_CMAKE_ARGS
|
|||
-DFAIL_ON_WARNINGS=OFF
|
||||
-DWITH_GFLAGS=OFF
|
||||
-DWITH_TESTS=OFF
|
||||
-DWITH_TOOLS=OFF
|
||||
-DWITH_CORE_TOOLS=OFF
|
||||
-DWITH_TOOLS=${ROCKSDB_TOOLS}
|
||||
-DWITH_CORE_TOOLS=${ROCKSDB_TOOLS}
|
||||
-DWITH_BENCHMARK_TOOLS=OFF
|
||||
-DWITH_BZ2=OFF
|
||||
-DWITH_LZ4=ON
|
||||
|
|
|
@ -157,6 +157,7 @@ set(PORTABLE_ROCKSDB ON CACHE BOOL "Compile RocksDB in portable mode") # Set thi
|
|||
set(ROCKSDB_SSE42 OFF CACHE BOOL "Compile RocksDB with SSE42 enabled")
|
||||
set(ROCKSDB_AVX ${USE_AVX} CACHE BOOL "Compile RocksDB with AVX enabled")
|
||||
set(ROCKSDB_AVX2 OFF CACHE BOOL "Compile RocksDB with AVX2 enabled")
|
||||
set(ROCKSDB_TOOLS OFF CACHE BOOL "Compile RocksDB tools")
|
||||
set(WITH_LIBURING OFF CACHE BOOL "Build with liburing enabled") # Set this to ON to include liburing
|
||||
# RocksDB is currently enabled by default for GCC but does not build with the latest
|
||||
# Clang.
|
||||
|
|
Loading…
Reference in New Issue