Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,011,827

Downloads of v 3.9.4:

1,333

Last Update:

04 Oct 2017

Package Maintainer(s):

Software Author(s):

  • Andy Cedilnik
  • Bill Hoffman
  • Brad King
  • Ken Martin
  • Alexander Neundorf

Tags:

compiler make build admin

CMake (Install)

This is not the latest version of CMake (Install) available.

  • 1
  • 2
  • 3

3.9.4 | Updated: 04 Oct 2017

Downloads:

2,011,827

Downloads of v 3.9.4:

1,333

Maintainer(s):

Software Author(s):

  • Andy Cedilnik
  • Bill Hoffman
  • Brad King
  • Ken Martin
  • Alexander Neundorf

CMake (Install) 3.9.4

This is not the latest version of CMake (Install) available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install CMake (Install), run the following command from the command line or from PowerShell:

>

To upgrade CMake (Install), run the following command from the command line or from PowerShell:

>

To uninstall CMake (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade cmake.install -y --source="'INTERNAL REPO URL'" --version="'3.9.4'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade cmake.install -y --source="'INTERNAL REPO URL'" --version="'3.9.4'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install cmake.install
  win_chocolatey:
    name: cmake.install
    version: '3.9.4'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'cmake.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.9.4'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller cmake.install
{
    Name     = "cmake.install"
    Version  = "3.9.4"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'cmake.install':
  ensure   => '3.9.4',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 04 Oct 2017.

Description

CMake is a family of tools designed to build, test and package software. CMake is used to control the software compilation process using simple platform and compiler independent configuration files. CMake generates native makefiles and workspaces that can be used in the compiler environment of your choice.

Development

MSI Properties

ADD_CMAKE_TO_PATH

  • None - Do not add CMake to path (default)
  • System - Add CMake to system PATH for all users
  • User - Add CMake to system PATH for current user

DESKTOP_SHORTCUT_REQUESTED

  • 0 = Do not create desktop icon (default)
  • 1 = Create CMake desktop icon

For example: choco install cmake.install --installargs 'ADD_CMAKE_TO_PATH=""User""'


tools\chocolateyInstall.ps1
$packageName = 'cmake.install'
$installerType = 'msi'
$silentArgs = '/quiet /qn /norestart'
$url = 'http://cmake.org/files/v3.9/cmake-3.9.4-win64-x64.msi'
$checksum = '1c5c6f32e5ce4b2f202f9c50fd7fc60c9b7bd29ddf375a75bc63d58066090e2a'
$checksumType = 'sha256'
$validExitCodes = @(0,3010)

Install-ChocolateyPackage -PackageName "$packageName" `
                          -FileType "$installerType" `
                          -SilentArgs "$silentArgs" `
                          -Url "$url" `
                          -ValidExitCodes $validExitCodes `
                          -Checksum "$checksum" `
                          -ChecksumType "$checksumType"
tools\chocolateyUninstall.ps1
$packageName = 'cmake.install'
$packageSearch = "CMake*"
$fileType = 'msi'
$silentArgs = '/S'
$validExitCodes = @(0)

Get-ItemProperty -Path @( 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
                          'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
                          'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
                 -ErrorAction:SilentlyContinue `
| Where-Object   { $_.DisplayName -like $packageSearch } `
| ForEach-Object { Uninstall-ChocolateyPackage -PackageName "$packageName" `
                                               -FileType "$fileType" `
                                               -SilentArgs "$($silentArgs)" `
                                               -File "$($_.UninstallString.Replace('"',''))" `
                                               -ValidExitCodes $validExitCodes }

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
CMake (Install) 3.29.1 14052 Thursday, April 4, 2024 Approved
CMake (Install) 3.29.0 15534 Friday, March 22, 2024 Approved
CMake (Install) 3.29.0-rc4 70 Friday, March 15, 2024 Approved
CMake (Install) 3.29.0-rc3 92 Tuesday, March 5, 2024 Approved
CMake (Install) 3.29.0-rc2 92 Friday, February 23, 2024 Approved
CMake (Install) 3.29.0-rc1 111 Wednesday, February 14, 2024 Approved
CMake (Install) 3.28.4 119 Friday, March 22, 2024 Approved
CMake (Install) 3.28.3 31444 Wednesday, February 14, 2024 Approved
CMake (Install) 3.28.0-rc5 761 Thursday, November 16, 2023 Approved
CMake (Install) 3.28.0-rc4 132 Tuesday, November 7, 2023 Approved
CMake (Install) 3.28.0-rc3 145 Wednesday, October 25, 2023 Approved
CMake (Install) 3.28.0-rc2 75 Thursday, October 19, 2023 Approved
CMake (Install) 3.28.0-rc1 113 Thursday, October 12, 2023 Approved
CMake (Install) 3.27.9 54453 Wednesday, November 29, 2023 Approved
CMake (Install) 3.27.8 15809 Thursday, November 16, 2023 Approved
CMake (Install) 3.27.7 35434 Friday, October 6, 2023 Approved
CMake (Install) 3.27.6 116687 Thursday, September 21, 2023 Approved
CMake (Install) 3.27.5 1309 Friday, September 15, 2023 Approved
CMake (Install) 3.27.4 34560 Thursday, August 24, 2023 Approved
CMake (Install) 3.27.3 11063 Thursday, August 17, 2023 Approved
CMake (Install) 3.27.2 1488 Friday, August 11, 2023 Approved
CMake (Install) 3.27.1 23657 Wednesday, July 26, 2023 Approved
CMake (Install) 3.27.0 9749 Wednesday, July 19, 2023 Approved
CMake (Install) 3.27.0-rc5 63 Friday, July 14, 2023 Approved
CMake (Install) 3.27.0-rc4 403 Saturday, July 1, 2023 Approved
CMake (Install) 3.27.0-rc3 119 Wednesday, June 21, 2023 Approved
CMake (Install) 3.27.0-rc2 131 Tuesday, June 13, 2023 Approved
CMake (Install) 3.26.6 103 Tuesday, November 28, 2023 Approved
CMake (Install) 3.26.5 345 Thursday, July 20, 2023 Approved
CMake (Install) 3.26.4 50713 Friday, May 19, 2023 Approved
CMake (Install) 3.26.3 49264 Wednesday, April 5, 2023 Approved
CMake (Install) 3.26.2 7307 Thursday, March 30, 2023 Approved
CMake (Install) 3.26.1 11216 Thursday, March 23, 2023 Approved
CMake (Install) 3.26.0 11643 Wednesday, March 15, 2023 Approved
CMake (Install) 3.26.0-rc6 87 Thursday, March 9, 2023 Approved
CMake (Install) 3.26.0-rc5 103 Wednesday, March 1, 2023 Approved
CMake (Install) 3.26.0-rc4 112 Wednesday, February 22, 2023 Approved
CMake (Install) 3.26.0-rc3 109 Thursday, February 16, 2023 Approved
CMake (Install) 3.26.0-rc2 86 Friday, February 10, 2023 Approved
CMake (Install) 3.26.0-rc1 203 Friday, February 3, 2023 Approved
CMake (Install) 3.25.3 8462 Wednesday, March 8, 2023 Approved
CMake (Install) 3.25.2 44491 Friday, January 20, 2023 Approved
CMake (Install) 3.25.1 69725 Thursday, December 1, 2022 Approved
CMake (Install) 3.25.0 36495 Thursday, November 17, 2022 Approved
CMake (Install) 3.25.0-rc4 702 Wednesday, November 9, 2022 Approved
CMake (Install) 3.25.0-rc3 755 Wednesday, November 2, 2022 Approved
CMake (Install) 3.25.0-rc2 760 Thursday, October 20, 2022 Approved
CMake (Install) 3.25.0-rc1 350 Thursday, October 13, 2022 Approved
CMake (Install) 3.24.4 2447 Wednesday, March 8, 2023 Approved
CMake (Install) 3.24.3 19592 Wednesday, November 2, 2022 Approved
CMake (Install) 3.24.2 36400 Tuesday, September 13, 2022 Approved
CMake (Install) 3.24.1 13867 Thursday, August 18, 2022 Approved
CMake (Install) 3.24.0 22240 Friday, August 5, 2022 Approved
CMake (Install) 3.24.0-rc5 85 Friday, July 29, 2022 Approved
CMake (Install) 3.24.0-rc4 111 Wednesday, July 20, 2022 Approved
CMake (Install) 3.24.0-rc3 172 Thursday, July 7, 2022 Approved
CMake (Install) 3.24.0-rc2 181 Friday, June 24, 2022 Approved
CMake (Install) 3.24.0-rc1 177 Wednesday, June 15, 2022 Approved
CMake (Install) 3.23.5 3069 Wednesday, November 2, 2022 Approved
CMake (Install) 3.23.4 126 Wednesday, October 5, 2022 Approved
CMake (Install) 3.23.3 6756 Friday, July 29, 2022 Approved
CMake (Install) 3.23.2 37277 Thursday, May 26, 2022 Approved
CMake (Install) 3.23.1 45206 Tuesday, April 12, 2022 Approved
CMake (Install) 3.23.0 13115 Tuesday, March 29, 2022 Approved
CMake (Install) 3.23.0-rc5 206 Wednesday, March 23, 2022 Approved
CMake (Install) 3.23.0-rc4 176 Friday, March 18, 2022 Approved
CMake (Install) 3.23.0-rc3 207 Friday, March 11, 2022 Exempted
CMake (Install) 3.23.0-rc2 344 Wednesday, February 23, 2022 Approved
CMake (Install) 3.23.0-rc1 405 Tuesday, February 8, 2022 Approved
CMake (Install) 3.22.6 546 Friday, July 29, 2022 Approved
CMake (Install) 3.22.5 114 Thursday, June 2, 2022 Approved
CMake (Install) 3.22.4 321 Tuesday, April 12, 2022 Approved
CMake (Install) 3.22.3 28380 Saturday, March 5, 2022 Approved
CMake (Install) 3.22.2 41806 Tuesday, January 25, 2022 Approved
CMake (Install) 3.22.1 38062 Wednesday, December 8, 2021 Approved
CMake (Install) 3.22.0 16636 Thursday, November 18, 2021 Approved
CMake (Install) 3.22.0-rc3 203 Friday, November 12, 2021 Approved
CMake (Install) 3.22.0-rc2 328 Thursday, October 28, 2021 Approved
CMake (Install) 3.22.0-rc1 458 Thursday, October 14, 2021 Approved
CMake (Install) 3.21.6 941 Saturday, March 5, 2022 Approved
CMake (Install) 3.21.5 165 Tuesday, February 1, 2022 Approved
CMake (Install) 3.21.4 26483 Wednesday, October 27, 2021 Approved
CMake (Install) 3.21.3 34556 Monday, September 20, 2021 Approved
CMake (Install) 3.21.2 16318 Wednesday, August 25, 2021 Approved
CMake (Install) 3.21.1 5203 Tuesday, July 27, 2021 Approved
CMake (Install) 3.21.0 24288 Wednesday, July 14, 2021 Approved
CMake (Install) 3.21.0-rc3 192 Thursday, July 8, 2021 Approved
CMake (Install) 3.21.0-rc2 260 Wednesday, June 30, 2021 Approved
CMake (Install) 3.21.0-rc1 255 Wednesday, June 23, 2021 Approved
CMake (Install) 3.20.6 13968 Monday, September 20, 2021 Approved
CMake (Install) 3.20.5 15495 Monday, June 21, 2021 Approved
CMake (Install) 3.20.4 5925 Monday, June 14, 2021 Approved
CMake (Install) 3.20.3 13818 Friday, May 28, 2021 Approved
CMake (Install) 3.20.2 38654 Thursday, April 29, 2021 Approved
CMake (Install) 3.20.1 14247 Thursday, April 8, 2021 Approved
CMake (Install) 3.20.0 25304 Tuesday, March 23, 2021 Approved
CMake (Install) 3.20.0-rc5 203 Wednesday, March 17, 2021 Approved
CMake (Install) 3.20.0-rc4 196 Thursday, March 11, 2021 Approved
CMake (Install) 3.20.0-rc3 345 Thursday, March 4, 2021 Approved
CMake (Install) 3.20.0-rc2 235 Thursday, February 25, 2021 Approved
CMake (Install) 3.20.0-rc1 168 Wednesday, February 24, 2021 Approved
CMake (Install) 3.19.8 8234 Wednesday, April 7, 2021 Approved
CMake (Install) 3.19.7 17568 Monday, March 15, 2021 Approved
CMake (Install) 3.19.6 13110 Wednesday, February 24, 2021 Approved
CMake (Install) 3.19.5 7078 Tuesday, February 16, 2021 Approved
CMake (Install) 3.19.4 12543 Thursday, January 28, 2021 Approved
CMake (Install) 3.19.3 14637 Wednesday, January 13, 2021 Approved
CMake (Install) 3.19.2 16095 Wednesday, December 16, 2020 Approved
CMake (Install) 3.19.1 17105 Tuesday, November 24, 2020 Approved
CMake (Install) 3.19.0 6587 Wednesday, November 18, 2020 Approved
CMake (Install) 3.19.0-rc3 287 Saturday, November 7, 2020 Approved
CMake (Install) 3.19.0-rc2 245 Wednesday, October 28, 2020 Approved
CMake (Install) 3.19.0-rc1 255 Wednesday, October 14, 2020 Approved
CMake (Install) 3.18.6 808 Thursday, February 11, 2021 Approved
CMake (Install) 3.18.5 3291 Wednesday, November 18, 2020 Approved
CMake (Install) 3.18.4 52129 Wednesday, October 7, 2020 Approved
CMake (Install) 3.18.3 11138 Tuesday, September 22, 2020 Approved
CMake (Install) 3.18.2 20481 Thursday, August 20, 2020 Approved
CMake (Install) 3.18.1 14930 Friday, July 31, 2020 Approved
CMake (Install) 3.18.0 16811 Wednesday, July 15, 2020 Approved
CMake (Install) 3.18.0-rc4 227 Friday, July 10, 2020 Approved
CMake (Install) 3.18.0-rc3 249 Thursday, July 2, 2020 Approved
CMake (Install) 3.18.0-rc2 329 Wednesday, June 17, 2020 Approved
CMake (Install) 3.18.0-rc1 238 Wednesday, June 10, 2020 Approved
CMake (Install) 3.17.5 1949 Tuesday, September 15, 2020 Approved
CMake (Install) 3.17.4 208 Friday, July 31, 2020 Approved
CMake (Install) 3.17.3 26045 Thursday, May 28, 2020 Approved
CMake (Install) 3.17.2 28043 Wednesday, April 29, 2020 Approved
CMake (Install) 3.17.1 13385 Thursday, April 9, 2020 Approved
CMake (Install) 3.17.0 13253 Friday, March 20, 2020 Approved
CMake (Install) 3.17.0-rc3 341 Friday, March 13, 2020 Approved
CMake (Install) 3.17.0-rc2 371 Tuesday, March 3, 2020 Approved
CMake (Install) 3.17.0-rc1 338 Thursday, February 13, 2020 Exempted
CMake (Install) 3.16.8 1102 Monday, June 1, 2020 Approved
CMake (Install) 3.16.7 274 Wednesday, May 27, 2020 Approved
CMake (Install) 3.16.6 2538 Saturday, April 11, 2020 Approved
CMake (Install) 3.16.5 23181 Wednesday, March 4, 2020 Approved
CMake (Install) 3.16.4.20200221 7586 Friday, February 21, 2020 Approved
CMake (Install) 3.16.2 27461 Friday, December 20, 2019 Approved
CMake (Install) 3.16.1 11809 Tuesday, December 10, 2019 Approved
CMake (Install) 3.16.0 11171 Wednesday, November 27, 2019 Approved
CMake (Install) 3.16.0-rc4 445 Tuesday, November 19, 2019 Approved
CMake (Install) 3.16.0-rc3 457 Tuesday, November 5, 2019 Approved
CMake (Install) 3.16.0-rc2 395 Monday, October 21, 2019 Approved
CMake (Install) 3.16.0-rc1 544 Friday, October 11, 2019 Approved
CMake (Install) 3.15.6 602 Tuesday, December 17, 2019 Approved
CMake (Install) 3.15.5 18754 Thursday, October 31, 2019 Approved
CMake (Install) 3.15.4 13259 Wednesday, October 2, 2019 Approved
CMake (Install) 3.15.3 10329 Thursday, September 5, 2019 Approved
CMake (Install) 3.15.2 10938 Thursday, August 8, 2019 Approved
CMake (Install) 3.15.1 2507 Friday, July 26, 2019 Approved
CMake (Install) 3.15.0 1935 Friday, July 19, 2019 Approved
CMake (Install) 3.15.0-rc4 563 Thursday, July 11, 2019 Approved
CMake (Install) 3.15.0-rc3 333 Friday, June 28, 2019 Approved
CMake (Install) 3.15.0-rc2 382 Wednesday, June 19, 2019 Approved
CMake (Install) 3.15.0-rc1 356 Tuesday, June 4, 2019 Approved
CMake (Install) 3.14.7 20199 Wednesday, October 2, 2019 Approved
CMake (Install) 3.14.6 6964 Tuesday, July 16, 2019 Approved
CMake (Install) 3.14.5 12342 Friday, May 31, 2019 Approved
CMake (Install) 3.14.4 6407 Tuesday, May 14, 2019 Approved
CMake (Install) 3.14.3 9739 Monday, April 22, 2019 Approved
CMake (Install) 3.14.2 5348 Friday, April 12, 2019 Approved
CMake (Install) 3.14.1 5096 Friday, March 29, 2019 Approved
CMake (Install) 3.14.0 5392 Thursday, March 14, 2019 Approved
CMake (Install) 3.14.0-rc4 408 Friday, March 8, 2019 Approved
CMake (Install) 3.14.0-rc3 404 Friday, March 1, 2019 Approved
CMake (Install) 3.14.0-rc2 390 Friday, February 15, 2019 Approved
CMake (Install) 3.14.0-rc1 294 Thursday, February 7, 2019 Approved
CMake (Install) 3.13.5 910 Tuesday, May 14, 2019 Approved
CMake (Install) 3.13.4 10043 Monday, February 4, 2019 Approved
CMake (Install) 3.13.3 7452 Tuesday, January 15, 2019 Approved
CMake (Install) 3.13.2 7678 Thursday, December 13, 2018 Approved
CMake (Install) 3.13.1 18729 Wednesday, November 28, 2018 Approved
CMake (Install) 3.13.0 3287 Wednesday, November 21, 2018 Approved
CMake (Install) 3.13.0-rc3 390 Wednesday, November 7, 2018 Approved
CMake (Install) 3.13.0-rc2 412 Thursday, October 25, 2018 Approved
CMake (Install) 3.13.0-rc1 350 Tuesday, October 9, 2018 Approved
CMake (Install) 3.12.4 4035 Friday, November 2, 2018 Approved
CMake (Install) 3.12.3 2592 Wednesday, October 3, 2018 Approved
CMake (Install) 3.12.2 11656 Friday, September 7, 2018 Approved
CMake (Install) 3.12.1 4371 Thursday, August 9, 2018 Approved
CMake (Install) 3.12.0 4373 Tuesday, July 17, 2018 Approved
CMake (Install) 3.12.0-rc3 373 Monday, July 9, 2018 Approved
CMake (Install) 3.12.0-rc2 391 Saturday, June 30, 2018 Approved
CMake (Install) 3.12.0-rc1 404 Friday, June 15, 2018 Approved
CMake (Install) 3.11.4 6889 Thursday, June 14, 2018 Approved
CMake (Install) 3.11.3 2715 Friday, June 1, 2018 Approved
CMake (Install) 3.11.2 2805 Thursday, May 17, 2018 Approved
CMake (Install) 3.11.1 8371 Tuesday, April 17, 2018 Approved
CMake (Install) 3.11.0 9829 Thursday, March 29, 2018 Approved
CMake (Install) 3.11.0-rc4 389 Monday, March 19, 2018 Approved
CMake (Install) 3.11.0-rc3 439 Saturday, March 10, 2018 Approved
CMake (Install) 3.11.0-rc2 371 Tuesday, February 27, 2018 Approved
CMake (Install) 3.11.0-rc1 378 Thursday, February 15, 2018 Approved
CMake (Install) 3.10.3 7385 Friday, March 16, 2018 Approved
CMake (Install) 3.10.2 19662 Thursday, January 18, 2018 Approved
CMake (Install) 3.10.1.20180115 2473 Monday, January 15, 2018 Approved
CMake (Install) 3.10.1 6840 Thursday, December 14, 2017 Approved
CMake (Install) 3.10.0 7400 Tuesday, November 21, 2017 Approved
CMake (Install) 3.9.6 782 Thursday, November 30, 2017 Approved
CMake (Install) 3.9.4 1333 Wednesday, October 4, 2017 Approved
CMake (Install) 3.9.3 708 Wednesday, September 20, 2017 Approved
CMake (Install) 3.9.2 647 Thursday, September 7, 2017 Approved
CMake (Install) 3.9.1 11373 Thursday, August 10, 2017 Approved
CMake (Install) 3.9.0 2742 Tuesday, July 18, 2017 Approved
CMake (Install) 3.8.2 5120 Wednesday, May 31, 2017 Approved
CMake (Install) 3.8.1 3228 Tuesday, May 2, 2017 Approved
CMake (Install) 3.8.0 2598 Tuesday, April 11, 2017 Approved
CMake (Install) 3.7.2 5806 Friday, January 13, 2017 Approved
CMake (Install) 3.7.0 2987 Saturday, November 12, 2016 Approved
CMake (Install) 3.6.1 4564 Saturday, July 23, 2016 Approved
CMake (Install) 3.6.0 2310 Wednesday, July 20, 2016 Approved
CMake (Install) 3.5.2 7680 Saturday, June 18, 2016 Approved
CMake (Install) 3.4.3 7184 Monday, February 1, 2016 Approved
CMake (Install) 3.4.1 2709 Thursday, December 3, 2015 Approved
CMake (Install) 3.4.0 450 Friday, November 13, 2015 Approved
CMake (Install) 3.3.2 1321 Thursday, September 17, 2015 Approved
CMake (Install) 3.3.1 528 Friday, August 14, 2015 Approved
CMake (Install) 3.3.0 5093 Friday, July 24, 2015 Approved
CMake (Install) 3.2.3 4379 Tuesday, June 2, 2015 Approved
CMake (Install) 3.2.2 1553 Wednesday, April 15, 2015 Approved
CMake (Install) 3.2.1 853 Monday, April 6, 2015 Approved

Program

Package

  • Automatically built and uploaded by dtgm

This package has no dependencies.

Discussion for the CMake (Install) Package

Ground Rules:

  • This discussion is only about CMake (Install) and the CMake (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or CMake (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus