aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-10-17 12:41:34 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-10-17 12:43:08 -0700
commit87296823ac9cc939c233caf7c02585b5fe6d3df7 (patch)
treefaa7859f03d95cb19700e1c552e5a46512442a72 /toolsrc/src
parenta536a4630261684370cd1b43b88e8121fe50f9ad (diff)
downloadvcpkg-87296823ac9cc939c233caf7c02585b5fe6d3df7.tar.gz
vcpkg-87296823ac9cc939c233caf7c02585b5fe6d3df7.zip
[cmake] Update to 3.9.4 (was 3.9.3)
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/vcpkg/vcpkgpaths.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg/vcpkgpaths.cpp b/toolsrc/src/vcpkg/vcpkgpaths.cpp
index 90f9cb00b..486fff40e 100644
--- a/toolsrc/src/vcpkg/vcpkgpaths.cpp
+++ b/toolsrc/src/vcpkg/vcpkgpaths.cpp
@@ -105,10 +105,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, 3};
+ static constexpr std::array<int, 3> EXPECTED_VERSION = {3, 9, 4};
static const std::string VERSION_CHECK_ARGUMENTS = "--version";
- const fs::path downloaded_copy = downloads_folder / "cmake-3.9.3-win32-x86" / "bin" / "cmake.exe";
+ const fs::path downloaded_copy = downloads_folder / "cmake-3.9.4-win32-x86" / "bin" / "cmake.exe";
const std::vector<fs::path> from_path = Files::find_from_PATH("cmake");
std::vector<fs::path> candidate_paths;