mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-29 07:02:27 +00:00
aedi: rename target that builds cmake
`CMakeTarget` uses cmake to build targets, `BuildCMakeTarget` is building cmake itself `
This commit is contained in:
parent
4c5a8b5221
commit
8e8ddd8435
2 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ def targets():
|
||||||
ZstdTarget(),
|
ZstdTarget(),
|
||||||
|
|
||||||
# Tools
|
# Tools
|
||||||
CMakeBuildTarget(),
|
BuildCMakeTarget(),
|
||||||
GmakeTarget(),
|
GmakeTarget(),
|
||||||
MesonTarget(),
|
MesonTarget(),
|
||||||
NasmTarget(),
|
NasmTarget(),
|
||||||
|
|
|
@ -23,7 +23,7 @@ import zipapp
|
||||||
from .base import *
|
from .base import *
|
||||||
|
|
||||||
|
|
||||||
class CMakeBuildTarget(CMakeTarget):
|
class BuildCMakeTarget(CMakeTarget):
|
||||||
def __init__(self, name='cmake'):
|
def __init__(self, name='cmake'):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue