diff options
author | albert-github <albert.tests@gmail.com> | 2019-10-02 15:44:32 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-10-02 15:44:32 (GMT) |
commit | a872ee137c88b98c4d5ce2391c60e304d68faccb (patch) | |
tree | 2b744b0f84949957105caa18b7b1484753ec29a6 /cmake/git_watcher.cmake | |
parent | 4e21d19cf63b17aadb62905535262deb208a0c73 (diff) | |
download | Doxygen-a872ee137c88b98c4d5ce2391c60e304d68faccb.zip Doxygen-a872ee137c88b98c4d5ce2391c60e304d68faccb.tar.gz Doxygen-a872ee137c88b98c4d5ce2391c60e304d68faccb.tar.bz2 |
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.
Diffstat (limited to 'cmake/git_watcher.cmake')
-rw-r--r-- | cmake/git_watcher.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
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) |