mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
aedi: use cmake 3.21.0 in its download target
This commit is contained in:
parent
d11d4f3b56
commit
99b556d4c1
1 changed files with 4 additions and 6 deletions
|
@ -56,12 +56,10 @@ class DownloadCMakeTarget(Target):
|
|||
super().__init__(name)
|
||||
|
||||
def build(self, state: BuildState):
|
||||
cmake_version = '3.20.5'
|
||||
cmake_basename = f'cmake-{cmake_version}-macos-universal'
|
||||
|
||||
state.download_source(
|
||||
f'https://github.com/Kitware/CMake/releases/download/v{cmake_version}/{cmake_basename}.tar.gz',
|
||||
'000828af55268853ba21b91f8ce3bfb9365aa72aee960fc7f0c01a71f3a2217a')
|
||||
cmake_version = '3.21.0'
|
||||
cmake_basename = f'cmake-{cmake_version}-macos10.10-universal'
|
||||
cmake_url = f'https://github.com/Kitware/CMake/releases/download/v{cmake_version}/{cmake_basename}.tar.gz'
|
||||
state.download_source(cmake_url, 'de0ae285d3fdf88373397b53de007e29cc67bec7cb945badff3eeecf80c25016')
|
||||
|
||||
target_path = state.deps_path / 'cmake'
|
||||
if target_path.exists():
|
||||
|
|
Loading…
Reference in a new issue