mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
git-subtree-dir: src/deps/src/zstd git-subtree-split: 794ea1b0afca0f020f4e57b6732332231fb23c70
10 lines
449 B
CMake
10 lines
449 B
CMake
function(GetZstdLibraryVersion _header _major _minor _patch)
|
|
# Read file content
|
|
file(READ ${_header} CONTENT)
|
|
|
|
string(REGEX MATCH ".*define ZSTD_VERSION_MAJOR *([0-9]+).*define ZSTD_VERSION_MINOR *([0-9]+).*define ZSTD_VERSION_RELEASE *([0-9]+)" VERSION_REGEX "${CONTENT}")
|
|
set(${_major} ${CMAKE_MATCH_1} PARENT_SCOPE)
|
|
set(${_minor} ${CMAKE_MATCH_2} PARENT_SCOPE)
|
|
set(${_patch} ${CMAKE_MATCH_3} PARENT_SCOPE)
|
|
endfunction()
|
|
|