2bb5fc1280
Summary: Add an option to explicitly disable building shared versions of the RocksDB libraries. The shared libraries cannot be built in cases where some dependencies are only available as static libraries. This allows still building RocksDB in these situations. Pull Request resolved: https://github.com/facebook/rocksdb/pull/6122 Differential Revision: D18920740 fbshipit-source-id: d24f66d93c68a1e65635e6e0b663bae62c903bca
15 lines
395 B
CMake
15 lines
395 B
CMake
add_executable(db_stress${ARTIFACT_SUFFIX}
|
|
db_stress.cc
|
|
db_stress_tool.cc
|
|
batched_ops_stress.cc
|
|
cf_consistency_stress.cc
|
|
db_stress_common.cc
|
|
db_stress_driver.cc
|
|
db_stress_test_base.cc
|
|
db_stress_shared_state.cc
|
|
db_stress_gflags.cc
|
|
db_stress_tool.cc
|
|
no_batched_ops_stress.cc)
|
|
target_link_libraries(db_stress${ARTIFACT_SUFFIX} ${ROCKSDB_LIB})
|
|
list(APPEND tool_deps db_stress)
|