aboutsummaryrefslogtreecommitdiffhomepage
path: root/CMake/GetGitRevisionDescription.cmake
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2023-10-15 00:23:01 +0300
committerlevlam <levlam@telegram.org>2023-10-15 00:23:01 +0300
commit91b57ccceb735d01c27b431ec07a8c34a475116a (patch)
tree3873b24469b13ee59ef9eeac89d7a0a0d242b31a /CMake/GetGitRevisionDescription.cmake
parentebd77d51524742886d3f7930357aeb8aaab1474a (diff)
Suppress logging if failed to find Crc32c, Readline or Git.
Diffstat (limited to 'CMake/GetGitRevisionDescription.cmake')
-rw-r--r--CMake/GetGitRevisionDescription.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMake/GetGitRevisionDescription.cmake b/CMake/GetGitRevisionDescription.cmake
index 420772966..724d07821 100644
--- a/CMake/GetGitRevisionDescription.cmake
+++ b/CMake/GetGitRevisionDescription.cmake
@@ -71,7 +71,7 @@ function(get_git_head_revision _refspecvar _hashvar)
return()
endif()
- find_package(Git)
+ find_package(Git QUIET)
# Check if the current source dir is a git submodule or a worktree.
# In both cases .git is a file instead of a directory.