Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
55,645
Downloads of v 3.12.1:
337
Last Update:
09 Aug 2018
Package Maintainer(s):
Software Author(s):
- Andy Cedilnik
- Bill Hoffman
- Brad King
- Ken Martin
- Alexander Neundorf
Tags:
cmake compiler make build foss cross-platform
CMake (Portable)
This is not the latest version of CMake (Portable) available.
Downloads:
55,645
Downloads of v 3.12.1:
337
Maintainer(s):
Software Author(s):
- Andy Cedilnik
- Bill Hoffman
- Brad King
- Ken Martin
- Alexander Neundorf
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
CMake (Portable) 3.12.1
This is not the latest version of CMake (Portable) available.
All Checks are Passing
2 Passing Test
To install CMake (Portable), run the following command from the command line or from PowerShell:
To upgrade CMake (Portable), run the following command from the command line or from PowerShell:
To uninstall CMake (Portable), run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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://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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download cmake.portable --internalize --version=3.12.1 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade cmake.portable -y --source="'STEP 3 URL'" [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.portable -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure cmake.portable installed
win_chocolatey:
name: cmake.portable
state: present
version: 3.12.1
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'cmake.portable' do
action :install
version '3.12.1'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: cmake.portable,
Version: 3.12.1,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller cmake.portable
{
Name = 'cmake.portable'
Ensure = 'Present'
Version = '3.12.1'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cmake.portable':
provider => 'chocolatey',
ensure => '3.12.1',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install cmake.portable version="3.12.1" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
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.
This package was approved as a trusted package on 09 Aug 2018.
CMake is an open-source, cross-platform 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, and generate native makefiles and workspaces that can be used in the compiler environment of your choice. The suite of CMake tools were created by Kitware in response to the need for a powerful, cross-platform build environment for open-source projects such as ITK and VTK.
CMake - Cross Platform Makefile Generator
Copyright 2000-2017 Kitware, Inc. and Contributors
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Kitware, Inc. nor the names of Contributors
may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
The following individuals and institutions are among the Contributors:
* Aaron C. Meadows <[email protected]>
* Adriaan de Groot <[email protected]>
* Aleksey Avdeev <[email protected]>
* Alexander Neundorf <[email protected]>
* Alexander Smorkalov <[email protected]>
* Alexey Sokolov <[email protected]>
* Alex Turbov <[email protected]>
* Andreas Pakulat <[email protected]>
* Andreas Schneider <[email protected]>
* André Rigland Brodtkorb <[email protected]>
* Axel Huebl, Helmholtz-Zentrum Dresden - Rossendorf
* Benjamin Eikel
* Bjoern Ricks <[email protected]>
* Brad Hards <[email protected]>
* Christopher Harvey
* Christoph Grüninger <[email protected]>
* Clement Creusot <[email protected]>
* Daniel Blezek <[email protected]>
* Daniel Pfeifer <[email protected]>
* Enrico Scholz <[email protected]>
* Eran Ifrah <[email protected]>
* Esben Mose Hansen, Ange Optimization ApS
* Geoffrey Viola <[email protected]>
* Google Inc
* Gregor Jasny
* Helio Chissini de Castro <[email protected]>
* Ilya Lavrenov <[email protected]>
* Insight Software Consortium <insightsoftwareconsortium.org>
* Jan Woetzel
* Kelly Thompson <[email protected]>
* Konstantin Podsvirov <[email protected]>
* Mario Bensi <[email protected]>
* Mathieu Malaterre <[email protected]>
* Matthaeus G. Chajdas
* Matthias Kretz <[email protected]>
* Matthias Maennich <[email protected]>
* Michael Stürmer
* Miguel A. Figueroa-Villanueva
* Mike Jackson
* Mike McQuaid <[email protected]>
* Nicolas Bock <[email protected]>
* Nicolas Despres <[email protected]>
* Nikita Krupen'ko <[email protected]>
* NVIDIA Corporation <www.nvidia.com>
* OpenGamma Ltd. <opengamma.com>
* Per Øyvind Karlsen <[email protected]>
* Peter Collingbourne <[email protected]>
* Petr Gotthard <[email protected]>
* Philip Lowman <[email protected]>
* Philippe Proulx <[email protected]>
* Raffi Enficiaud, Max Planck Society
* Raumfeld <raumfeld.com>
* Roger Leigh <[email protected]>
* Rolf Eike Beer <[email protected]>
* Roman Donchenko <[email protected]>
* Roman Kharitonov <[email protected]>
* Ruslan Baratov
* Sebastian Holtermann <[email protected]>
* Stephen Kelly <[email protected]>
* Sylvain Joubert <[email protected]>
* Thomas Sondergaard <[email protected]>
* Tobias Hunger <[email protected]>
* Todd Gamblin <[email protected]>
* Tristan Carel
* University of Dundee
* Vadim Zhukov
* Will Dicharry <[email protected]>
See version control history for details of individual contributions.
The above copyright and license notice applies to distributions of
CMake in source and binary form. Third-party software packages supplied
with CMake under compatible licenses provide their own copyright notices
documented in corresponding subdirectories or source files.
------------------------------------------------------------------------------
CMake was initially developed by Kitware with the following sponsorship:
* National Library of Medicine at the National Institutes of Health
as part of the Insight Segmentation and Registration Toolkit (ITK).
* US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel
Visualization Initiative.
* National Alliance for Medical Image Computing (NAMIC) is funded by the
National Institutes of Health through the NIH Roadmap for Medical Research,
Grant U54 EB005149.
* Kitware, Inc.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from the listed download
location on <https://cmake.org/download/>
and can be verified by doing the following:
1. Download the following:
32-Bit software: <https://cmake.org/files/v3.12/cmake-3.12.1-win32-x86.zip>
64-Bit software: <https://cmake.org/files/v3.12/cmake-3.12.1-win64-x64.zip>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:
checksum type: sha256
checksum32: B9D5107BBC122CBFAB539547BFD4965216620ED279E5B28461ADB91D29407A5A
checksum64: 55FE5C63C18CADE09B9AA5D758897330E8C5A29C018F82A8E72C9C0E13BE3FDC
The file 'LICENSE.txt' has been obtained from <https://gitlab.kitware.com/cmake/cmake/blob/master/Copyright.txt>
$ErrorActionPreference = 'Stop'
$toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
file = "$toolsPath\cmake-3.12.1-win32-x86.zip"
file64 = "$toolsPath\cmake-3.12.1-win64-x64.zip"
destination = $toolsPath
}
Get-ChocolateyUnzip @packageArgs
Remove-Item $toolsPath\*.zip -ea 0
md5: 13B5AB14D7EFA68D127A57283C8ADC7A | sha1: 4822A0AD1ADE7E42F692596C6794D41551C3390E | sha256: B9D5107BBC122CBFAB539547BFD4965216620ED279E5B28461ADB91D29407A5A | sha512: 95FDF1AAB6FCCA127F62CA15BDCDB549218305AE48E9357517701E16773C95864DB10EEE47FECD071CD4EF4C1612D5F960B14840AB3130AE21690983EE918ECA
md5: 1461C7EC00F915F882DB42C653080C38 | sha1: ABBA7ED50155DA1A71D152276509073572239FEA | sha256: 55FE5C63C18CADE09B9AA5D758897330E8C5A29C018F82A8E72C9C0E13BE3FDC | sha512: CAB41D3785E87823C9265773F7EF2B92486657D1C6CFCD2F111D4613754B07E8ABF1150CC427797DBA636FCA7407EBE2D9478A7798D401522C0B6951EF83CF69
Log in or click on link to see number of positives.
- cmake.portable.3.12.1.nupkg (a9d9c812c1b1) - ## / 60
- cmake-3.12.1-win32-x86.zip (b9d5107bbc12) - ## / 60
- cmake-3.12.1-win64-x64.zip (55fe5c63c18c) - ## / 60
- cmake-gui.exe (436fe21b72e3) - ## / 67
- cmake.exe (409dc68d615d) - ## / 67
- cmcldeps.exe (119e20be02fb) - ## / 67
- cpack.exe (51ec2ac67c71) - ## / 68
- ctest.exe (12a94c8eb4b0) - ## / 67
- cmake-gui.exe (fd18920f33c3) - ## / 68
- cmake.exe (e91e950bda84) - ## / 68
- cmcldeps.exe (0031394ad795) - ## / 68
- cpack.exe (e30229698026) - ## / 68
- ctest.exe (01df314721c1) - ## / 68
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
CMake (Portable) 3.19.3 | 426 | Wednesday, January 13, 2021 | Approved |
CMake (Portable) 3.19.2 | 797 | Wednesday, December 16, 2020 | Approved |
CMake (Portable) 3.19.1 | 804 | Tuesday, November 24, 2020 | Approved |
CMake (Portable) 3.19.0 | 168 | Wednesday, November 18, 2020 | Approved |
CMake (Portable) 3.19.0-rc3 | 22 | Saturday, November 7, 2020 | Approved |
CMake (Portable) 3.19.0-rc2 | 26 | Wednesday, October 28, 2020 | Approved |
CMake (Portable) 3.19.0-rc1 | 25 | Wednesday, October 14, 2020 | Approved |
CMake (Portable) 3.18.5 | 11 | Wednesday, November 18, 2020 | Approved |
CMake (Portable) 3.18.4 | 2154 | Wednesday, October 7, 2020 | Approved |
CMake (Portable) 3.18.3 | 1165 | Tuesday, September 22, 2020 | Approved |
CMake (Portable) 3.18.2 | 2269 | Thursday, August 20, 2020 | Approved |
CMake (Portable) 3.18.1 | 1565 | Friday, July 31, 2020 | Approved |
CMake (Portable) 3.18.0 | 1196 | Wednesday, July 15, 2020 | Approved |
CMake (Portable) 3.18.0-rc4 | 23 | Friday, July 10, 2020 | Approved |
CMake (Portable) 3.18.0-rc3 | 63 | Thursday, July 2, 2020 | Approved |
CMake (Portable) 3.18.0-rc2 | 51 | Wednesday, June 17, 2020 | Approved |
CMake (Portable) 3.18.0-rc1 | 44 | Wednesday, June 10, 2020 | Approved |
CMake (Portable) 3.17.5 | 28 | Tuesday, September 15, 2020 | Approved |
CMake (Portable) 3.17.4 | 28 | Friday, July 31, 2020 | Approved |
CMake (Portable) 3.17.3 | 2417 | Thursday, May 28, 2020 | Approved |
CMake (Portable) 3.17.2 | 1111 | Wednesday, April 29, 2020 | Approved |
CMake (Portable) 3.17.1 | 383 | Friday, April 10, 2020 | Approved |
CMake (Portable) 3.17.0 | 329 | Friday, March 20, 2020 | Approved |
CMake (Portable) 3.17.0-rc3 | 81 | Thursday, March 12, 2020 | Approved |
CMake (Portable) 3.17.0-rc2 | 85 | Tuesday, March 3, 2020 | Approved |
CMake (Portable) 3.17.0-rc1 | 96 | Thursday, February 13, 2020 | Exempted |
CMake (Portable) 3.16.8 | 55 | Monday, June 1, 2020 | Approved |
CMake (Portable) 3.16.7 | 52 | Wednesday, May 27, 2020 | Approved |
CMake (Portable) 3.16.6 | 90 | Friday, April 10, 2020 | Approved |
CMake (Portable) 3.16.5 | 250 | Wednesday, March 4, 2020 | Approved |
CMake (Portable) 3.16.4.20200221 | 288 | Friday, February 21, 2020 | Approved |
CMake (Portable) 3.16.2 | 670 | Friday, December 20, 2019 | Approved |
CMake (Portable) 3.16.1 | 176 | Tuesday, December 10, 2019 | Approved |
CMake (Portable) 3.16.0 | 185 | Wednesday, November 27, 2019 | Approved |
CMake (Portable) 3.16.0-rc4 | 66 | Tuesday, November 19, 2019 | Approved |
CMake (Portable) 3.16.0-rc3 | 72 | Thursday, October 31, 2019 | Approved |
CMake (Portable) 3.16.0-rc2 | 92 | Monday, October 21, 2019 | Approved |
CMake (Portable) 3.16.0-rc1 | 107 | Thursday, October 10, 2019 | Approved |
CMake (Portable) 3.15.6 | 99 | Tuesday, December 17, 2019 | Approved |
CMake (Portable) 3.15.5 | 307 | Thursday, October 31, 2019 | Approved |
CMake (Portable) 3.15.4 | 218 | Thursday, October 3, 2019 | Approved |
CMake (Portable) 3.15.3 | 344 | Wednesday, September 4, 2019 | Approved |
CMake (Portable) 3.15.2 | 1070 | Thursday, August 8, 2019 | Approved |
CMake (Portable) 3.15.1 | 417 | Friday, July 26, 2019 | Approved |
CMake (Portable) 3.15.0 | 296 | Friday, July 19, 2019 | Approved |
CMake (Portable) 3.15.0-rc4 | 127 | Thursday, July 11, 2019 | Approved |
CMake (Portable) 3.15.0-rc3 | 113 | Friday, June 28, 2019 | Approved |
CMake (Portable) 3.15.0-rc2 | 77 | Wednesday, June 19, 2019 | Approved |
CMake (Portable) 3.15.0-rc1 | 97 | Tuesday, June 4, 2019 | Approved |
CMake (Portable) 3.14.7 | 119 | Friday, October 4, 2019 | Approved |
CMake (Portable) 3.14.6 | 150 | Wednesday, July 17, 2019 | Approved |
CMake (Portable) 3.14.5 | 1271 | Friday, May 31, 2019 | Approved |
CMake (Portable) 3.14.4 | 478 | Tuesday, May 14, 2019 | Approved |
CMake (Portable) 3.14.3 | 436 | Tuesday, April 23, 2019 | Approved |
CMake (Portable) 3.14.2 | 283 | Friday, April 12, 2019 | Approved |
CMake (Portable) 3.14.1 | 496 | Friday, March 29, 2019 | Approved |
CMake (Portable) 3.14.0 | 524 | Thursday, March 14, 2019 | Approved |
CMake (Portable) 3.14.0-rc4 | 95 | Friday, March 8, 2019 | Approved |
CMake (Portable) 3.14.0-rc3 | 108 | Friday, March 1, 2019 | Approved |
CMake (Portable) 3.14.0-rc2 | 225 | Saturday, February 16, 2019 | Approved |
CMake (Portable) 3.14.0-rc1 | 157 | Friday, February 8, 2019 | Approved |
CMake (Portable) 3.13.5 | 137 | Tuesday, May 14, 2019 | Approved |
CMake (Portable) 3.13.4 | 941 | Friday, February 8, 2019 | Approved |
CMake (Portable) 3.13.3 | 597 | Tuesday, January 15, 2019 | Approved |
CMake (Portable) 3.13.2 | 840 | Thursday, December 13, 2018 | Approved |
CMake (Portable) 3.13.1 | 411 | Wednesday, November 28, 2018 | Approved |
CMake (Portable) 3.13.0 | 300 | Wednesday, November 21, 2018 | Approved |
CMake (Portable) 3.13.0-rc3 | 161 | Wednesday, November 7, 2018 | Approved |
CMake (Portable) 3.13.0-rc2 | 121 | Thursday, October 25, 2018 | Approved |
CMake (Portable) 3.13.0-rc1 | 141 | Tuesday, October 9, 2018 | Approved |
CMake (Portable) 3.12.4 | 371 | Friday, November 2, 2018 | Approved |
CMake (Portable) 3.12.3 | 379 | Wednesday, October 3, 2018 | Approved |
CMake (Portable) 3.12.2 | 335 | Friday, September 7, 2018 | Approved |
CMake (Portable) 3.12.1 | 337 | Thursday, August 9, 2018 | Approved |
CMake (Portable) 3.12.0 | 318 | Tuesday, July 17, 2018 | Approved |
CMake (Portable) 3.12.0-rc3 | 186 | Monday, July 9, 2018 | Approved |
CMake (Portable) 3.12.0-rc2 | 166 | Saturday, June 30, 2018 | Approved |
CMake (Portable) 3.12.0-rc1 | 192 | Friday, June 15, 2018 | Approved |
CMake (Portable) 3.11.4 | 598 | Thursday, June 14, 2018 | Approved |
CMake (Portable) 3.11.3 | 489 | Friday, June 1, 2018 | Approved |
CMake (Portable) 3.11.2 | 275 | Thursday, May 17, 2018 | Approved |
CMake (Portable) 3.11.1 | 474 | Tuesday, April 17, 2018 | Approved |
CMake (Portable) 3.11.0 | 382 | Thursday, March 29, 2018 | Approved |
CMake (Portable) 3.11.0-rc4 | 219 | Monday, March 19, 2018 | Approved |
CMake (Portable) 3.11.0-rc3 | 223 | Saturday, March 10, 2018 | Approved |
CMake (Portable) 3.11.0-rc2 | 251 | Tuesday, February 27, 2018 | Approved |
CMake (Portable) 3.11.0-rc1 | 217 | Friday, February 16, 2018 | Approved |
CMake (Portable) 3.10.3 | 475 | Friday, March 16, 2018 | Approved |
CMake (Portable) 3.10.2 | 2334 | Thursday, January 18, 2018 | Approved |
CMake (Portable) 3.10.1.20180115 | 345 | Monday, January 15, 2018 | Approved |
CMake (Portable) 3.10.1 | 630 | Thursday, December 14, 2017 | Approved |
CMake (Portable) 3.10.0 | 470 | Tuesday, November 21, 2017 | Approved |
CMake (Portable) 3.9.6 | 295 | Thursday, November 30, 2017 | Approved |
CMake (Portable) 3.9.4 | 684 | Wednesday, October 4, 2017 | Approved |
CMake (Portable) 3.9.3 | 400 | Wednesday, September 20, 2017 | Approved |
CMake (Portable) 3.9.2 | 386 | Thursday, September 7, 2017 | Approved |
CMake (Portable) 3.9.1 | 505 | Thursday, August 10, 2017 | Approved |
CMake (Portable) 3.9.0 | 410 | Tuesday, July 18, 2017 | Approved |
CMake (Portable) 3.8.2 | 1953 | Wednesday, May 31, 2017 | Approved |
CMake (Portable) 3.8.1 | 499 | Tuesday, May 2, 2017 | Approved |
CMake (Portable) 3.8.0 | 447 | Tuesday, April 11, 2017 | Approved |
CMake (Portable) 3.7.2 | 1160 | Friday, January 13, 2017 | Approved |
CMake (Portable) 3.7.0 | 1040 | Saturday, November 12, 2016 | Approved |
CMake (Portable) 3.6.1 | 1942 | Saturday, July 23, 2016 | Approved |
CMake (Portable) 3.6.0 | 348 | Wednesday, July 20, 2016 | Approved |
CMake (Portable) 3.5.2 | 413 | Friday, April 15, 2016 | Approved |
CMake (Portable) 3.5.1 | 506 | Thursday, March 24, 2016 | Approved |
CMake (Portable) 3.5.0 | 448 | Tuesday, March 8, 2016 | Approved |
CMake (Portable) 3.4.3 | 844 | Monday, February 1, 2016 | Approved |
CMake (Portable) 3.4.1 | 610 | Thursday, December 3, 2015 | Approved |
CMake (Portable) 3.4.0 | 291 | Friday, November 13, 2015 | Approved |
CMake (Portable) 3.3.2 | 275 | Thursday, September 17, 2015 | Approved |
CMake (Portable) 3.3.1 | 214 | Friday, August 14, 2015 | Approved |
CMake (Portable) 3.3.0 | 1814 | Friday, July 24, 2015 | Approved |
CMake (Portable) 3.2.3 | 1065 | Tuesday, June 2, 2015 | Approved |
CMake (Portable) 3.2.2 | 321 | Wednesday, April 15, 2015 | Approved |
CMake (Portable) 3.2.1 | 297 | Monday, April 6, 2015 | Approved |
© 2000 Kitware Inc
-
- chocolatey (≥ 0.10.5)
Ground Rules:
- This discussion is only about CMake (Portable) and the CMake (Portable) 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 (Portable), 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.