Update CMake version to 3.4

flashmozzg's Avatar

flashmozzg

31 Oct, 2015 02:54 PM

It has very important feature/fix:
* The "Visual Studio 14 2015" generator learned to select a Windows 10 SDK based on the value of the "CMAKE_SYSTEM_VERSION" variable and the SDKs available on the host. Without it it's not possible to compile win10 sdk projects via CMake.
It's now in final RC stage, so I just want it to be added into the list for next env update.

  1. Support Staff 1 Posted by Feodor Fitsner on 31 Oct, 2015 11:54 PM

    Feodor Fitsner's Avatar

    I've added a new task to install CMake on all build workers.

    In the meantime you can use this simple script to install CMake 3.4 during the build:

    Write-Host "Installing CMake 3.4.0 ..." -ForegroundColor Cyan
    $exePath = "$($env:USERPROFILE)\cmake-3.4.0-rc2-win32-x86.exe"
    Write-Host "Downloading..."
    (New-Object Net.WebClient).DownloadFile('https://cmake.org/files/v3.4/cmake-3.4.0-rc2-win32-x86.exe', $exePath)
    Write-Host "Installing..."
    cmd /c start /wait $exePath /S
    cmake --version
    Write-Host "CMake 3.4.0 installed" -ForegroundColor Green
    
  2. Ilya Finkelshteyn closed this discussion on 25 Aug, 2018 02:01 AM.

Comments are currently closed for this discussion. You can start a new one.

Keyboard shortcuts

Generic

? Show this help
ESC Blurs the current field

Comment Form

r Focus the comment reply box
^ + ↩ Submit the comment

You can use Command ⌘ instead of Control ^ on Mac