fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
507 B
10 lines
507 B
# Read rocksdb version from version.h header file.
|
|
|
|
function(get_rocksdb_version version_var)
|
|
file(READ "${CMAKE_CURRENT_SOURCE_DIR}/include/rocksdb/version.h" version_header_file)
|
|
foreach(component MAJOR MINOR PATCH)
|
|
string(REGEX MATCH "#define ROCKSDB_${component} ([0-9]+)" _ ${version_header_file})
|
|
set(ROCKSDB_VERSION_${component} ${CMAKE_MATCH_1})
|
|
endforeach()
|
|
set(${version_var} "${ROCKSDB_VERSION_MAJOR}.${ROCKSDB_VERSION_MINOR}.${ROCKSDB_VERSION_PATCH}" PARENT_SCOPE)
|
|
endfunction()
|
|
|