From a872ee137c88b98c4d5ce2391c60e304d68faccb Mon Sep 17 00:00:00 2001 From: albert-github Date: Wed, 2 Oct 2019 17:44:32 +0200 Subject: issue #7285 git executable required Test showed that the REQUIRED is not necessary for the doxygen build process. The git version available will not be available. --- cmake/git_watcher.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/git_watcher.cmake b/cmake/git_watcher.cmake index 6447b86..6a50476 100644 --- a/cmake/git_watcher.cmake +++ b/cmake/git_watcher.cmake @@ -69,7 +69,7 @@ CHECK_OPTIONAL_VARIABLE(GIT_WORKING_DIR "${CMAKE_SOURCE_DIR}") # Check the optional git variable. # If it's not set, we'll try to find it using the CMake packaging system. if(NOT DEFINED GIT_EXECUTABLE) - find_package(Git QUIET REQUIRED) + find_package(Git QUIET) endif() CHECK_REQUIRED_VARIABLE(GIT_EXECUTABLE) -- cgit v0.12