aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
authoratkawa7 <atkawa7@yahoo.com>2017-08-11 09:10:37 -0700
committerGitHub <noreply@github.com>2017-08-11 09:10:37 -0700
commit6e5ec2ff08ebb2b1e746a7f950562c50d94b01c5 (patch)
tree8eea51540995ffa3daf0f524c4cc45403e64f8de /toolsrc/src
parent8b09cb2efed9323133e54429a84be39c8c6c850f (diff)
downloadvcpkg-6e5ec2ff08ebb2b1e746a7f950562c50d94b01c5.tar.gz
vcpkg-6e5ec2ff08ebb2b1e746a7f950562c50d94b01c5.zip
[cmake] Fix cmake path
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/VcpkgPaths.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/VcpkgPaths.cpp b/toolsrc/src/VcpkgPaths.cpp
index f3501e162..38b11584a 100644
--- a/toolsrc/src/VcpkgPaths.cpp
+++ b/toolsrc/src/VcpkgPaths.cpp
@@ -98,10 +98,10 @@ namespace vcpkg
static fs::path get_cmake_path(const fs::path& downloads_folder, const fs::path scripts_folder)
{
- static constexpr std::array<int, 3> expected_version = {3, 9, 0};
+ static constexpr std::array<int, 3> expected_version = {3, 9, 1};
static const std::wstring version_check_arguments = L"--version";
- const fs::path downloaded_copy = downloads_folder / "cmake-3.9.0-win32-x86" / "bin" / "cmake.exe";
+ const fs::path downloaded_copy = downloads_folder / "cmake-3.9.1-win32-x86" / "bin" / "cmake.exe";
const std::vector<fs::path> from_path = find_from_PATH(L"cmake");
std::vector<fs::path> candidate_paths;