mirror of
https://github.com/google/benchmark.git
synced 2025-04-03 16:10:58 +08:00
CMake: unbreak version handling for tarballs (#1793)
#1742 changed the placeholder version from `0.0.0` to `v0.0.0`, but this line which was further dealing with it, was not updated. Fixes https://github.com/google/benchmark/issues/1792 Co-authored-by: dominic <510002+dmah42@users.noreply.github.com>
This commit is contained in:
parent
144d23cf5f
commit
d77b692710
@ -104,7 +104,7 @@ get_git_version(GIT_VERSION)
|
|||||||
|
|
||||||
# If no git version can be determined, use the version
|
# If no git version can be determined, use the version
|
||||||
# from the project() command
|
# from the project() command
|
||||||
if ("${GIT_VERSION}" STREQUAL "0.0.0")
|
if ("${GIT_VERSION}" STREQUAL "v0.0.0")
|
||||||
set(VERSION "v${benchmark_VERSION}")
|
set(VERSION "v${benchmark_VERSION}")
|
||||||
else()
|
else()
|
||||||
set(VERSION "${GIT_VERSION}")
|
set(VERSION "${GIT_VERSION}")
|
||||||
|
Loading…
Reference in New Issue
Block a user