diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-09-22 14:20:27 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-09-22 14:21:37 -0700 |
| commit | 548b7f69197fad294f44b6e3ae5f587116220fae (patch) | |
| tree | b8b812b648609d37a93dd7fae3eef1b628e0524d /toolsrc/src/VcpkgPaths.cpp | |
| parent | b8f3812068a7e4e5a389d9bf9efed62bf80d8d11 (diff) | |
| download | vcpkg-548b7f69197fad294f44b6e3ae5f587116220fae.tar.gz vcpkg-548b7f69197fad294f44b6e3ae5f587116220fae.zip | |
Bump required version of CMake to 3.9.3
3.9.3 contains this interesting change:
FindBoost: Add support for Boost 1.65.0 and 1.65.1 to CMake 3.9
Diffstat (limited to 'toolsrc/src/VcpkgPaths.cpp')
| -rw-r--r-- | toolsrc/src/VcpkgPaths.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/VcpkgPaths.cpp b/toolsrc/src/VcpkgPaths.cpp index 29edbb260..02e238b3f 100644 --- a/toolsrc/src/VcpkgPaths.cpp +++ b/toolsrc/src/VcpkgPaths.cpp @@ -97,10 +97,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, 2}; + static constexpr std::array<int, 3> EXPECTED_VERSION = {3, 9, 3}; static const std::wstring VERSION_CHECK_ARGUMENTS = L"--version"; - const fs::path downloaded_copy = downloads_folder / "cmake-3.9.2-win32-x86" / "bin" / "cmake.exe"; + const fs::path downloaded_copy = downloads_folder / "cmake-3.9.3-win32-x86" / "bin" / "cmake.exe"; const std::vector<fs::path> from_path = Files::find_from_PATH(L"cmake"); std::vector<fs::path> candidate_paths; |
