We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05e36c8 commit 705c9e8Copy full SHA for 705c9e8
cmake/ProjectOptions.cmake
@@ -41,6 +41,13 @@ if(EXISTS ${PROJECT_SOURCE_DIR}/COPYLEFT)
41
)
42
endif()
43
44
+if(EXISTS ${PROJECT_SOURCE_DIR}/.gitconfig)
45
+ find_package(Git)
46
+ if(Git_FOUND)
47
+ execute_process(COMMAND ${GIT_EXECUTABLE} config --local include.path ../.gitconfig)
48
+ endif()
49
+endif()
50
+
51
find_package(Doxygen QUIET)
52
if(DOXYGEN_FOUND AND EXISTS ${PROJECT_SOURCE_DIR}/cmake/Doxyfile.in)
53
# set input and output files
0 commit comments