Skip to content

Commit 2bda76c

Browse files
Merge pull request #3225 from verilog-to-routing/feature-vtr-versioning
[Build][Version] Reverted Version Tagging Change
2 parents 770be34 + 8bf92d3 commit 2bda76c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libs/libvtrutil/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")
5454
include(GetGitRevisionDescription)
5555

5656
# Get the VCS revision.
57-
git_describe_working_tree(VTR_VCS_REVISION --tags --always --long)
57+
git_describe_working_tree(VTR_VCS_REVISION --always --long)
5858
string(FIND ${VTR_VCS_REVISION} "NOTFOUND" GIT_DESCRIBE_VTR_REVISION_NOTFOUND)
5959
if (NOT ${GIT_DESCRIBE_VTR_REVISION_NOTFOUND} EQUAL -1)
6060
# Git describe failed, usually this means we
@@ -64,7 +64,7 @@ if (NOT ${GIT_DESCRIBE_VTR_REVISION_NOTFOUND} EQUAL -1)
6464
endif()
6565

6666
# Get the short VCS revision
67-
git_describe_working_tree(VTR_VCS_REVISION_SHORT --tags --always --long --exclude '*')
67+
git_describe_working_tree(VTR_VCS_REVISION_SHORT --always --long --exclude '*')
6868
string(FIND "${VTR_VCS_REVISION_SHORT}" "NOTFOUND" GIT_DESCRIBE_VTR_REVISION_SHORT_NOTFOUND)
6969
if (NOT ${GIT_DESCRIBE_VTR_REVISION_SHORT_NOTFOUND} EQUAL -1)
7070
# Git describe failed, usually this means we

0 commit comments

Comments
 (0)