summaryrefslogtreecommitdiffstats
path: root/Modules/FindGit.cmake
diff options
context:
space:
mode:
authorFrank Park <ypiao@wpi.edu>2015-01-13 02:23:37 (GMT)
committerBrad King <brad.king@kitware.com>2015-01-13 13:54:31 (GMT)
commit546906243d21727ac6c1bab0210fc028ff80c3c0 (patch)
treebbb8d7469f9e1b54f5d4e95ebfc02333a5a61676 /Modules/FindGit.cmake
parent3dec4a2bfbad7b519cb1e7c9aa72dd2ee3c4e669 (diff)
downloadCMake-546906243d21727ac6c1bab0210fc028ff80c3c0.zip
CMake-546906243d21727ac6c1bab0210fc028ff80c3c0.tar.gz
CMake-546906243d21727ac6c1bab0210fc028ff80c3c0.tar.bz2
FindGit: Search in 'GitHub for Windows' user directory
Diffstat (limited to 'Modules/FindGit.cmake')
-rw-r--r--Modules/FindGit.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/FindGit.cmake b/Modules/FindGit.cmake
index 570538d..b4f7b4b 100644
--- a/Modules/FindGit.cmake
+++ b/Modules/FindGit.cmake
@@ -45,11 +45,15 @@ set(git_names git eg)
if(WIN32)
if(NOT CMAKE_GENERATOR MATCHES "MSYS")
set(git_names git.cmd git eg.cmd eg)
+ # GitHub search path for Windows
+ set(github_path "$ENV{LOCALAPPDATA}/Github/PortableGit*/bin")
+ file(GLOB github_path "${github_path}")
endif()
endif()
find_program(GIT_EXECUTABLE
NAMES ${git_names}
+ PATHS ${github_path}
PATH_SUFFIXES Git/cmd Git/bin
DOC "git command line client"
)