Skip to content

Commit bfedec8

Browse files
committed
Update to CMake 3.15.2
1 parent aa9a0fd commit bfedec8

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

CMakeUrls.cmake

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11

22
#-----------------------------------------------------------------------------
33
# CMake sources
4-
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v3.14.4/cmake-3.14.4.tar.gz")
5-
set(unix_source_sha256 "00b4dc9b0066079d10f16eed32ec592963a44e7967371d2f5077fd1670ff36d9")
4+
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2.tar.gz")
5+
set(unix_source_sha256 "539088cb29a68e6d6a8fba5c00951e5e5b1a92c68fa38a83e1ed2f355933f768")
66

7-
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v3.14.4/cmake-3.14.4.zip")
8-
set(windows_source_sha256 "c33bf2dc5fabd4c86566eed62942ba18e05194dbbe5fe62b0d11882a2468ab63")
7+
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2.zip")
8+
set(windows_source_sha256 "3aac16f6e8049d8b93069474e954405c91a8bfdd88da383c296a03e287cbbf0d")
99

1010
#-----------------------------------------------------------------------------
1111
# CMake binaries
1212

1313
set(linux32_binary_url "NA") # Linux 32-bit binaries not available
1414
set(linux32_binary_sha256 "NA")
1515

16-
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.14.4/cmake-3.14.4-Linux-x86_64.tar.gz")
17-
set(linux64_binary_sha256 "9f414df8e432c4a143c2d6d81e170581badba8d89df1cf8944735b9122765c50")
16+
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2-Linux-x86_64.tar.gz")
17+
set(linux64_binary_sha256 "f8cbec2abc433938bd9378b129d1d288bb33b8b5a277afe19644683af6e32a59")
1818

19-
set(macosx_binary_url "https://github.com/Kitware/CMake/releases/download/v3.14.4/cmake-3.14.4-Darwin-x86_64.tar.gz")
20-
set(macosx_binary_sha256 "8a0c98869cb1e74e31c401a9ecf7a7cacbcfe9d4e7944f434e2f1d3995fefdf4")
19+
set(macosx_binary_url "https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2-Darwin-x86_64.tar.gz")
20+
set(macosx_binary_sha256 "7ec056d641b8cbea98b220efdcc99da1991758a370063dcac3a0cd388d6b30b6")
2121

22-
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v3.14.4/cmake-3.14.4-win32-x86.zip")
23-
set(win32_binary_sha256 "37faf7051c6318927b67ee1bf7e0c8d34b7159679d38e80ad860f833f92a096f")
22+
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2-win32-x86.zip")
23+
set(win32_binary_sha256 "afc698e6470358abdeff56231acd582762a6abbdf8c27efc0938b5f7cc842cfa")
2424

25-
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.14.4/cmake-3.14.4-win64-x64.zip")
26-
set(win64_binary_sha256 "7a0901a26a987259f720ca763ede1dff8161b7024488a89d2aa497e5e1508f5e")
25+
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2-win64-x64.zip")
26+
set(win64_binary_sha256 "28332003b55ed76a8928e9d071d9cf89cba040bea7c4e4c2100204ecbed7b2cf")

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The suite of CMake tools were created by Kitware in response to the need
1111
for a powerful, cross-platform build environment for open-source projects
1212
such as ITK and VTK.
1313

14-
The CMake python wheels provide `CMake 3.14.4 <https://cmake.org/cmake/help/v3.14/index.html>`_.
14+
The CMake python wheels provide `CMake 3.15.2 <https://cmake.org/cmake/help/v3.15/index.html>`_.
1515

1616
Latest Release
1717
--------------

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The suite of CMake tools were created by Kitware in response to the need
1515
for a powerful, cross-platform build environment for open-source projects
1616
such as `ITK <https://www.itk.org>`_ and `VTK <http://www.vtk.org>`_.
1717

18-
The CMake python wheels provide `CMake 3.14.4 <https://cmake.org/cmake/help/v3.14/index.html>`_.
18+
The CMake python wheels provide `CMake 3.15.2 <https://cmake.org/cmake/help/v3.15/index.html>`_.
1919

2020
.. toctree::
2121
:maxdepth: 2

tests/test_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _check_cmake_install(virtualenv, tmpdir):
12-
expected_version = "3.14.4"
12+
expected_version = "3.15.2"
1313

1414
for executable_name in ["cmake", "cpack", "ctest"]:
1515
output = virtualenv.run(

0 commit comments

Comments
 (0)