From 113800d1f052f3c0fa09b38d5e435730ed292fc3 Mon Sep 17 00:00:00 2001 From: Daan Leijen Date: Sat, 1 Mar 2025 14:52:37 -0800 Subject: [PATCH] remove status message --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 900241b5..dbd400c8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,10 +84,8 @@ if(EXISTS "${CMAKE_SOURCE_DIR}/.git/index") if(GIT_FOUND) execute_process(COMMAND ${GIT_EXECUTABLE} "describe" OUTPUT_VARIABLE mi_git_describe RESULT_VARIABLE mi_git_res ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) if(mi_git_res EQUAL "0") - message(STATUS, "git describe: ${mi_git_describe}") list(APPEND mi_defines "MI_GIT_DESCRIBE=${mi_git_describe}") # add to dependencies so we rebuild if the git head commit changes - # todo: this doesn't seem to work? set_property(GLOBAL APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/.git/index") endif() endif()