aedi: rename target that builds cmake

`CMakeTarget` uses cmake to build targets, `BuildCMakeTarget` is building cmake itself
`
This commit is contained in:
alexey.lysiuk 2021-09-24 11:09:43 +03:00
parent 4c5a8b5221
commit 8e8ddd8435
2 changed files with 2 additions and 2 deletions

View file

@ -102,7 +102,7 @@ def targets():
ZstdTarget(),
# Tools
CMakeBuildTarget(),
BuildCMakeTarget(),
GmakeTarget(),
MesonTarget(),
NasmTarget(),

View file

@ -23,7 +23,7 @@ import zipapp
from .base import *
class CMakeBuildTarget(CMakeTarget):
class BuildCMakeTarget(CMakeTarget):
def __init__(self, name='cmake'):
super().__init__(name)