mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-23 11:07:10 +01:00
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
This commit is contained in:
parent
b8f3812068
commit
548b7f6919
@ -105,12 +105,12 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
|
||||
|
||||
if($Dependency -eq "cmake")
|
||||
{
|
||||
$requiredVersion = "3.9.2"
|
||||
$downloadVersion = "3.9.2"
|
||||
$url = "https://cmake.org/files/v3.9/cmake-3.9.2-win32-x86.zip"
|
||||
$downloadPath = "$downloadsDir\cmake-3.9.2-win32-x86.zip"
|
||||
$expectedDownloadedFileHash = "9fe68d50f065666cb2861f53751390f15c6363c440e86a07677689378bb8329f"
|
||||
$executableFromDownload = "$downloadsDir\cmake-3.9.2-win32-x86\bin\cmake.exe"
|
||||
$requiredVersion = "3.9.3"
|
||||
$downloadVersion = "3.9.3"
|
||||
$url = "https://cmake.org/files/v3.9/cmake-3.9.3-win32-x86.zip"
|
||||
$downloadPath = "$downloadsDir\cmake-3.9.3-win32-x86.zip"
|
||||
$expectedDownloadedFileHash = "47870e3d4c9a5aa019e71020cd85cc60b6f2d2569fb239eaec204cd991e512f1"
|
||||
$executableFromDownload = "$downloadsDir\cmake-3.9.3-win32-x86\bin\cmake.exe"
|
||||
$extractionType = $ExtractionType_ZIP
|
||||
$extractionFolder = $downloadsDir
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user