diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-02-20 21:46:19 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-20 21:46:19 -0800 |
| commit | 7459156943653c73a0d4087ed4c4ad9703cc6538 (patch) | |
| tree | eb9dc304f06eba3a81a7ac263680851191eaf5bf /scripts | |
| parent | 128ba92feeba2f474d19a5fc738fb60338b5e70a (diff) | |
| parent | 9aa7c944f21b8adec37b1da04145708ff621dcd7 (diff) | |
| download | vcpkg-7459156943653c73a0d4087ed4c4ad9703cc6538.tar.gz vcpkg-7459156943653c73a0d4087ed4c4ad9703cc6538.zip | |
Merge pull request #698 from pravic/patch-1
Allow to use git.cmd in addition to git.exe
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/cmake/vcpkg_apply_patches.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmake/vcpkg_apply_patches.cmake b/scripts/cmake/vcpkg_apply_patches.cmake index e17d53b08..1ef138a1e 100644 --- a/scripts/cmake/vcpkg_apply_patches.cmake +++ b/scripts/cmake/vcpkg_apply_patches.cmake @@ -22,7 +22,7 @@ function(vcpkg_apply_patches) cmake_parse_arguments(_ap "QUIET" "SOURCE_PATH" "PATCHES" ${ARGN}) - find_program(GIT git) + find_program(GIT NAMES git git.cmd) set(PATCHNUM 0) foreach(PATCH ${_ap_PATCHES}) message(STATUS "Applying patch ${PATCH}") |
