Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgman/installers/unix.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def unix_installer_cmake(properties):
cmake_os = "win64"
cmake_arch = "x64"

cmake_version = "3.16.4"
cmake_version = "3.17.2"
url = "https://github.com/Kitware/CMake/releases/download/v" + cmake_version + "/cmake-" + cmake_version + ".tar.gz"

source_tarball_path = download_file(properties, url, "sources")
Expand Down
2 changes: 1 addition & 1 deletion pkgman/installers/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def windows_installer_cmake(properties):
if debug:
print(" ! Debug build not supported on Windows")

version = "3.10.2"
version = "3.17.2"

version_components = version.split(".")
short_version = "v" + version_components[0] + "." + version_components[1]
Expand Down