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:

119,805

Downloads of v 3.15.0:

455

Last Update:

19 Jul 2019

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.

  • 1
  • 2
  • 3

3.15.0 | Updated: 19 Jul 2019

Downloads:

119,805

Downloads of v 3.15.0:

455

Maintainer(s):

Software Author(s):

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

CMake (Portable) 3.15.0

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

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

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.portable -y --source="'INTERNAL REPO URL'" --version="'3.15.0'" [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="'INTERNAL REPO URL'" --version="'3.15.0'" 
$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.portable
  win_chocolatey:
    name: cmake.portable
    version: '3.15.0'
    source: INTERNAL REPO URL
    state: present

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


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

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


cChocoPackageInstaller cmake.portable
{
    Name     = "cmake.portable"
    Version  = "3.15.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'cmake.portable':
  ensure   => '3.15.0',
  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

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 19 Jul 2019.

Description

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.

Development


legal\LICENSE.txt
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.
legal\VERIFICATION.txt
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://github.com/Kitware/CMake/releases/download/v3.15.0/cmake-3.15.0-win32-x86.zip>
  64-Bit software: <https://github.com/Kitware/CMake/releases/download/v3.15.0/cmake-3.15.0-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: B8B00885535A33F13E2839F3E2830B404BF870697C1BA30697417FE3D17F529F
  checksum64: 2C99E2FE490AA3B66C605DB3131E9735417A887ECC7B8B86AA580BD428D3D721

The file 'LICENSE.txt' has been obtained from <https://gitlab.kitware.com/cmake/cmake/blob/master/Copyright.txt>
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition

$packageArgs = @{
  packageName = $env:ChocolateyPackageName
  file        = "$toolsPath\cmake-3.15.0-win32-x86.zip"
  file64      = "$toolsPath\cmake-3.15.0-win64-x64.zip"
  destination = $toolsPath
}

Get-ChocolateyUnzip @packageArgs
Remove-Item $toolsPath\*.zip -ea 0
tools\cmake-3.15.0-win32-x86.zip
md5: 4F85FF1FFA47FDC0514CDB1ADD1B13EA | sha1: F85EF845FB7802550D3EA04EAEAE0AEC59921C56 | sha256: B8B00885535A33F13E2839F3E2830B404BF870697C1BA30697417FE3D17F529F | sha512: B663555EB035188E9FA29AAC36251CEEC6B146351805C0D6F85BE1BAD7D0556091F139CE7576B6E54DC211AB273CF8BC716DEC9769E4DFE73E4A6DC771987601
tools\cmake-3.15.0-win64-x64.zip
md5: 73630B7E4E28E0AB4FC7BA299711486F | sha1: F35348A6CDE83563CB0F513438EFAAB0AE0B0637 | sha256: 2C99E2FE490AA3B66C605DB3131E9735417A887ECC7B8B86AA580BD428D3D721 | sha512: 7C977E87CA3F8E4768FF4E9E01CB47FEC5FD5E45AF416305128B1608F838E6052E109F252225DBDC0FE7EA6D981ECEC9C5758C12D1B790297B3202D257176AB0

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 (Portable) 3.29.0-rc4 10 Friday, March 15, 2024 Approved
CMake (Portable) 3.29.0-rc3 14 Tuesday, March 5, 2024 Approved
CMake (Portable) 3.29.0-rc2 15 Friday, February 23, 2024 Approved
CMake (Portable) 3.29.0-rc1 15 Wednesday, February 14, 2024 Approved
CMake (Portable) 3.28.4 8 Friday, March 22, 2024 Approved
CMake (Portable) 3.28.3 1382 Wednesday, February 14, 2024 Approved
CMake (Portable) 3.28.0-rc5 33 Thursday, November 16, 2023 Approved
CMake (Portable) 3.28.0-rc4 21 Tuesday, November 7, 2023 Approved
CMake (Portable) 3.28.0-rc3 24 Wednesday, October 25, 2023 Approved
CMake (Portable) 3.28.0-rc2 33 Thursday, October 19, 2023 Approved
CMake (Portable) 3.28.0-rc1 40 Thursday, October 12, 2023 Approved
CMake (Portable) 3.27.9 2937 Wednesday, November 29, 2023 Approved
CMake (Portable) 3.27.8 411 Thursday, November 16, 2023 Approved
CMake (Portable) 3.27.7 2101 Friday, October 6, 2023 Approved
CMake (Portable) 3.27.6 1175 Thursday, September 21, 2023 Approved
CMake (Portable) 3.27.5 424 Friday, September 15, 2023 Approved
CMake (Portable) 3.27.4 1504 Thursday, August 24, 2023 Approved
CMake (Portable) 3.27.3 623 Thursday, August 17, 2023 Approved
CMake (Portable) 3.27.2 193 Friday, August 11, 2023 Approved
CMake (Portable) 3.27.1 532 Wednesday, July 26, 2023 Approved
CMake (Portable) 3.27.0 134 Wednesday, July 19, 2023 Approved
CMake (Portable) 3.27.0-rc5 26 Friday, July 14, 2023 Approved
CMake (Portable) 3.27.0-rc4 31 Saturday, July 1, 2023 Approved
CMake (Portable) 3.27.0-rc3 29 Wednesday, June 21, 2023 Approved
CMake (Portable) 3.27.0-rc2 28 Tuesday, June 13, 2023 Approved
CMake (Portable) 3.26.6 18 Tuesday, November 28, 2023 Approved
CMake (Portable) 3.26.5 30 Thursday, July 20, 2023 Approved
CMake (Portable) 3.26.4 1899 Friday, May 19, 2023 Approved
CMake (Portable) 3.26.3 1176 Wednesday, April 5, 2023 Approved
CMake (Portable) 3.26.2 198 Thursday, March 30, 2023 Approved
CMake (Portable) 3.26.1 232 Thursday, March 23, 2023 Approved
CMake (Portable) 3.26.0 523 Wednesday, March 15, 2023 Approved
CMake (Portable) 3.26.0-rc6 41 Thursday, March 9, 2023 Approved
CMake (Portable) 3.26.0-rc5 35 Wednesday, March 1, 2023 Approved
CMake (Portable) 3.26.0-rc4 32 Wednesday, February 22, 2023 Approved
CMake (Portable) 3.26.0-rc3 36 Thursday, February 16, 2023 Approved
CMake (Portable) 3.26.0-rc2 41 Friday, February 10, 2023 Approved
CMake (Portable) 3.26.0-rc1 33 Friday, February 3, 2023 Approved
CMake (Portable) 3.25.3 370 Wednesday, March 8, 2023 Approved
CMake (Portable) 3.25.2 1569 Friday, January 20, 2023 Approved
CMake (Portable) 3.25.1 1474 Thursday, December 1, 2022 Approved
CMake (Portable) 3.25.0 437 Thursday, November 17, 2022 Approved
CMake (Portable) 3.25.0-rc4 42 Wednesday, November 9, 2022 Approved
CMake (Portable) 3.25.0-rc3 48 Wednesday, November 2, 2022 Approved
CMake (Portable) 3.25.0-rc2 39 Thursday, October 20, 2022 Approved
CMake (Portable) 3.25.0-rc1 50 Thursday, October 13, 2022 Approved
CMake (Portable) 3.24.4 36 Wednesday, March 8, 2023 Approved
CMake (Portable) 3.24.3 489 Wednesday, November 2, 2022 Approved
CMake (Portable) 3.24.2 1373 Tuesday, September 13, 2022 Approved
CMake (Portable) 3.24.1 821 Thursday, August 18, 2022 Approved
CMake (Portable) 3.24.0 401 Friday, August 5, 2022 Approved
CMake (Portable) 3.24.0-rc5 61 Friday, July 29, 2022 Approved
CMake (Portable) 3.24.0-rc4 63 Wednesday, July 20, 2022 Approved
CMake (Portable) 3.24.0-rc3 64 Thursday, July 7, 2022 Approved
CMake (Portable) 3.24.0-rc2 73 Friday, June 24, 2022 Approved
CMake (Portable) 3.24.0-rc1 65 Wednesday, June 15, 2022 Approved
CMake (Portable) 3.23.5 29 Wednesday, November 2, 2022 Approved
CMake (Portable) 3.23.4 36 Wednesday, October 5, 2022 Approved
CMake (Portable) 3.23.3 987 Friday, July 29, 2022 Approved
CMake (Portable) 3.23.2 1783 Thursday, May 26, 2022 Approved
CMake (Portable) 3.23.1 2504 Tuesday, April 12, 2022 Approved
CMake (Portable) 3.23.0 354 Tuesday, March 29, 2022 Approved
CMake (Portable) 3.23.0-rc5 86 Wednesday, March 23, 2022 Approved
CMake (Portable) 3.23.0-rc4 78 Friday, March 18, 2022 Approved
CMake (Portable) 3.23.0-rc3 63 Friday, March 11, 2022 Approved
CMake (Portable) 3.23.0-rc2 92 Wednesday, February 23, 2022 Approved
CMake (Portable) 3.23.0-rc1 67 Tuesday, February 8, 2022 Approved
CMake (Portable) 3.22.6 58 Friday, July 29, 2022 Approved
CMake (Portable) 3.22.5 53 Thursday, June 2, 2022 Approved
CMake (Portable) 3.22.4 70 Tuesday, April 12, 2022 Approved
CMake (Portable) 3.22.3 821 Saturday, March 5, 2022 Approved
CMake (Portable) 3.22.2 1335 Tuesday, January 25, 2022 Approved
CMake (Portable) 3.22.1 1162 Wednesday, December 8, 2021 Approved
CMake (Portable) 3.22.0 633 Thursday, November 18, 2021 Approved
CMake (Portable) 3.22.0-rc3 103 Friday, November 12, 2021 Approved
CMake (Portable) 3.22.0-rc2 107 Thursday, October 28, 2021 Approved
CMake (Portable) 3.22.0-rc1 91 Thursday, October 14, 2021 Approved
CMake (Portable) 3.21.6 58 Saturday, March 5, 2022 Approved
CMake (Portable) 3.21.5 71 Tuesday, February 1, 2022 Approved
CMake (Portable) 3.21.4 823 Wednesday, October 27, 2021 Approved
CMake (Portable) 3.21.3 1415 Monday, September 20, 2021 Approved
CMake (Portable) 3.21.2 562 Wednesday, August 25, 2021 Approved
CMake (Portable) 3.21.1 702 Tuesday, July 27, 2021 Approved
CMake (Portable) 3.21.0 549 Wednesday, July 14, 2021 Approved
CMake (Portable) 3.21.0-rc3 109 Thursday, July 8, 2021 Approved
CMake (Portable) 3.21.0-rc2 96 Wednesday, June 30, 2021 Approved
CMake (Portable) 3.21.0-rc1 97 Wednesday, June 23, 2021 Approved
CMake (Portable) 3.20.6 74 Monday, September 20, 2021 Approved
CMake (Portable) 3.20.5 568 Monday, June 21, 2021 Approved
CMake (Portable) 3.20.4 313 Monday, June 14, 2021 Approved
CMake (Portable) 3.20.3 538 Friday, May 28, 2021 Approved
CMake (Portable) 3.20.2 994 Thursday, April 29, 2021 Approved
CMake (Portable) 3.20.1 856 Thursday, April 8, 2021 Approved
CMake (Portable) 3.20.0 525 Tuesday, March 23, 2021 Approved
CMake (Portable) 3.20.0-rc5 125 Wednesday, March 17, 2021 Approved
CMake (Portable) 3.20.0-rc4 134 Thursday, March 11, 2021 Approved
CMake (Portable) 3.20.0-rc3 116 Thursday, March 4, 2021 Approved
CMake (Portable) 3.20.0-rc2 91 Thursday, February 25, 2021 Approved
CMake (Portable) 3.20.0-rc1 122 Wednesday, February 24, 2021 Approved
CMake (Portable) 3.19.8 194 Wednesday, April 7, 2021 Approved
CMake (Portable) 3.19.7 445 Monday, March 15, 2021 Approved
CMake (Portable) 3.19.6 578 Wednesday, February 24, 2021 Approved
CMake (Portable) 3.19.5 361 Tuesday, February 16, 2021 Approved
CMake (Portable) 3.19.4 682 Thursday, January 28, 2021 Approved
CMake (Portable) 3.19.3 673 Wednesday, January 13, 2021 Approved
CMake (Portable) 3.19.2 910 Wednesday, December 16, 2020 Approved
CMake (Portable) 3.19.1 914 Tuesday, November 24, 2020 Approved
CMake (Portable) 3.19.0 277 Wednesday, November 18, 2020 Approved
CMake (Portable) 3.19.0-rc3 180 Saturday, November 7, 2020 Approved
CMake (Portable) 3.19.0-rc2 167 Wednesday, October 28, 2020 Approved
CMake (Portable) 3.19.0-rc1 110 Wednesday, October 14, 2020 Approved
CMake (Portable) 3.18.6 93 Thursday, February 11, 2021 Approved
CMake (Portable) 3.18.5 106 Wednesday, November 18, 2020 Approved
CMake (Portable) 3.18.4 2267 Wednesday, October 7, 2020 Approved
CMake (Portable) 3.18.3 1286 Tuesday, September 22, 2020 Approved
CMake (Portable) 3.18.2 2388 Thursday, August 20, 2020 Approved
CMake (Portable) 3.18.1 3713 Friday, July 31, 2020 Approved
CMake (Portable) 3.18.0 1325 Wednesday, July 15, 2020 Approved
CMake (Portable) 3.18.0-rc4 165 Friday, July 10, 2020 Approved
CMake (Portable) 3.18.0-rc3 246 Thursday, July 2, 2020 Approved
CMake (Portable) 3.18.0-rc2 212 Wednesday, June 17, 2020 Approved
CMake (Portable) 3.18.0-rc1 190 Wednesday, June 10, 2020 Approved
CMake (Portable) 3.17.5 213 Tuesday, September 15, 2020 Approved
CMake (Portable) 3.17.4 169 Friday, July 31, 2020 Approved
CMake (Portable) 3.17.3 2538 Thursday, May 28, 2020 Approved
CMake (Portable) 3.17.2 1266 Wednesday, April 29, 2020 Approved
CMake (Portable) 3.17.1 518 Friday, April 10, 2020 Approved
CMake (Portable) 3.17.0 487 Friday, March 20, 2020 Approved
CMake (Portable) 3.17.0-rc3 218 Thursday, March 12, 2020 Approved
CMake (Portable) 3.17.0-rc2 247 Tuesday, March 3, 2020 Approved
CMake (Portable) 3.17.0-rc1 240 Thursday, February 13, 2020 Exempted
CMake (Portable) 3.16.8 180 Monday, June 1, 2020 Approved
CMake (Portable) 3.16.7 173 Wednesday, May 27, 2020 Approved
CMake (Portable) 3.16.6 223 Friday, April 10, 2020 Approved
CMake (Portable) 3.16.5 412 Wednesday, March 4, 2020 Approved
CMake (Portable) 3.16.4.20200221 438 Friday, February 21, 2020 Approved
CMake (Portable) 3.16.2 850 Friday, December 20, 2019 Approved
CMake (Portable) 3.16.1 300 Tuesday, December 10, 2019 Approved
CMake (Portable) 3.16.0 328 Wednesday, November 27, 2019 Approved
CMake (Portable) 3.16.0-rc4 224 Tuesday, November 19, 2019 Approved
CMake (Portable) 3.16.0-rc3 262 Thursday, October 31, 2019 Approved
CMake (Portable) 3.16.0-rc2 281 Monday, October 21, 2019 Approved
CMake (Portable) 3.16.0-rc1 267 Thursday, October 10, 2019 Approved
CMake (Portable) 3.15.6 254 Tuesday, December 17, 2019 Approved
CMake (Portable) 3.15.5 443 Thursday, October 31, 2019 Approved
CMake (Portable) 3.15.4 352 Thursday, October 3, 2019 Approved
CMake (Portable) 3.15.3 471 Wednesday, September 4, 2019 Approved
CMake (Portable) 3.15.2 1224 Thursday, August 8, 2019 Approved
CMake (Portable) 3.15.1 568 Friday, July 26, 2019 Approved
CMake (Portable) 3.15.0 455 Friday, July 19, 2019 Approved
CMake (Portable) 3.15.0-rc4 315 Thursday, July 11, 2019 Approved
CMake (Portable) 3.15.0-rc3 289 Friday, June 28, 2019 Approved
CMake (Portable) 3.15.0-rc2 228 Wednesday, June 19, 2019 Approved
CMake (Portable) 3.15.0-rc1 267 Tuesday, June 4, 2019 Approved
CMake (Portable) 3.14.7 266 Friday, October 4, 2019 Approved
CMake (Portable) 3.14.6 261 Wednesday, July 17, 2019 Approved
CMake (Portable) 3.14.5 1420 Friday, May 31, 2019 Approved
CMake (Portable) 3.14.4 613 Tuesday, May 14, 2019 Approved
CMake (Portable) 3.14.3 557 Tuesday, April 23, 2019 Approved
CMake (Portable) 3.14.2 413 Friday, April 12, 2019 Approved
CMake (Portable) 3.14.1 655 Friday, March 29, 2019 Approved
CMake (Portable) 3.14.0 642 Thursday, March 14, 2019 Approved
CMake (Portable) 3.14.0-rc4 243 Friday, March 8, 2019 Approved
CMake (Portable) 3.14.0-rc3 256 Friday, March 1, 2019 Approved
CMake (Portable) 3.14.0-rc2 376 Saturday, February 16, 2019 Approved
CMake (Portable) 3.14.0-rc1 303 Friday, February 8, 2019 Approved
CMake (Portable) 3.13.5 318 Tuesday, May 14, 2019 Approved
CMake (Portable) 3.13.4 1090 Friday, February 8, 2019 Approved
CMake (Portable) 3.13.3 775 Tuesday, January 15, 2019 Approved
CMake (Portable) 3.13.2 1010 Thursday, December 13, 2018 Approved
CMake (Portable) 3.13.1 550 Wednesday, November 28, 2018 Approved
CMake (Portable) 3.13.0 465 Wednesday, November 21, 2018 Approved
CMake (Portable) 3.13.0-rc3 302 Wednesday, November 7, 2018 Approved
CMake (Portable) 3.13.0-rc2 253 Thursday, October 25, 2018 Approved
CMake (Portable) 3.13.0-rc1 324 Tuesday, October 9, 2018 Approved
CMake (Portable) 3.12.4 560 Friday, November 2, 2018 Approved
CMake (Portable) 3.12.3 515 Wednesday, October 3, 2018 Approved
CMake (Portable) 3.12.2 500 Friday, September 7, 2018 Approved
CMake (Portable) 3.12.1 509 Thursday, August 9, 2018 Approved
CMake (Portable) 3.12.0 446 Tuesday, July 17, 2018 Approved
CMake (Portable) 3.12.0-rc3 357 Monday, July 9, 2018 Approved
CMake (Portable) 3.12.0-rc2 317 Saturday, June 30, 2018 Approved
CMake (Portable) 3.12.0-rc1 392 Friday, June 15, 2018 Approved
CMake (Portable) 3.11.4 864 Thursday, June 14, 2018 Approved
CMake (Portable) 3.11.3 676 Friday, June 1, 2018 Approved
CMake (Portable) 3.11.2 410 Thursday, May 17, 2018 Approved
CMake (Portable) 3.11.1 639 Tuesday, April 17, 2018 Approved
CMake (Portable) 3.11.0 560 Thursday, March 29, 2018 Approved
CMake (Portable) 3.11.0-rc4 372 Monday, March 19, 2018 Approved
CMake (Portable) 3.11.0-rc3 406 Saturday, March 10, 2018 Approved
CMake (Portable) 3.11.0-rc2 437 Tuesday, February 27, 2018 Approved
CMake (Portable) 3.11.0-rc1 401 Friday, February 16, 2018 Approved
CMake (Portable) 3.10.3 598 Friday, March 16, 2018 Approved
CMake (Portable) 3.10.2 2497 Thursday, January 18, 2018 Approved
CMake (Portable) 3.10.1.20180115 457 Monday, January 15, 2018 Approved
CMake (Portable) 3.10.1 722 Thursday, December 14, 2017 Approved
CMake (Portable) 3.10.0 589 Tuesday, November 21, 2017 Approved
CMake (Portable) 3.9.6 451 Thursday, November 30, 2017 Approved
CMake (Portable) 3.9.4 783 Wednesday, October 4, 2017 Approved
CMake (Portable) 3.9.3 480 Wednesday, September 20, 2017 Approved
CMake (Portable) 3.9.2 486 Thursday, September 7, 2017 Approved
CMake (Portable) 3.9.1 611 Thursday, August 10, 2017 Approved
CMake (Portable) 3.9.0 512 Tuesday, July 18, 2017 Approved
CMake (Portable) 3.8.2 2032 Wednesday, May 31, 2017 Approved
CMake (Portable) 3.8.1 606 Tuesday, May 2, 2017 Approved
CMake (Portable) 3.8.0 530 Tuesday, April 11, 2017 Approved
CMake (Portable) 3.7.2 1255 Friday, January 13, 2017 Approved
CMake (Portable) 3.7.0 1116 Saturday, November 12, 2016 Approved
CMake (Portable) 3.6.1 2033 Saturday, July 23, 2016 Approved
CMake (Portable) 3.6.0 482 Wednesday, July 20, 2016 Approved
CMake (Portable) 3.5.2 488 Friday, April 15, 2016 Approved
CMake (Portable) 3.5.1 601 Thursday, March 24, 2016 Approved
CMake (Portable) 3.5.0 556 Tuesday, March 8, 2016 Approved
CMake (Portable) 3.4.3 950 Monday, February 1, 2016 Approved
CMake (Portable) 3.4.1 711 Thursday, December 3, 2015 Approved
CMake (Portable) 3.4.0 368 Friday, November 13, 2015 Approved
CMake (Portable) 3.3.2 381 Thursday, September 17, 2015 Approved
CMake (Portable) 3.3.1 307 Friday, August 14, 2015 Approved
CMake (Portable) 3.3.0 1928 Friday, July 24, 2015 Approved
CMake (Portable) 3.2.3 1160 Tuesday, June 2, 2015 Approved
CMake (Portable) 3.2.2 417 Wednesday, April 15, 2015 Approved
CMake (Portable) 3.2.1 390 Monday, April 6, 2015 Approved

Discussion for the CMake (Portable) Package

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.
comments powered by Disqus