mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-14 00:11:16 +00:00
aedi: add dzip target to tier 2 tools
This commit is contained in:
parent
7b34f76cd4
commit
469f7471e3
2 changed files with 11 additions and 0 deletions
|
@ -122,6 +122,7 @@ def targets():
|
||||||
YasmTarget(),
|
YasmTarget(),
|
||||||
|
|
||||||
# Tools without binaries stored in the repo, can be outdated
|
# Tools without binaries stored in the repo, can be outdated
|
||||||
|
DzipTarget(),
|
||||||
GlslangTarget(),
|
GlslangTarget(),
|
||||||
P7ZipTarget(),
|
P7ZipTarget(),
|
||||||
PbzxTarget(),
|
PbzxTarget(),
|
||||||
|
|
|
@ -23,6 +23,16 @@ from ..state import BuildState
|
||||||
from . import base
|
from . import base
|
||||||
|
|
||||||
|
|
||||||
|
class DzipTarget(base.CMakeStaticDependencyTarget):
|
||||||
|
def __init__(self, name='dzip'):
|
||||||
|
super().__init__(name)
|
||||||
|
|
||||||
|
def prepare_source(self, state: BuildState):
|
||||||
|
state.download_source(
|
||||||
|
'https://github.com/kugelrund/dzip/archive/refs/tags/v3.1.tar.gz',
|
||||||
|
'9f057e35ef5ddda1a0911b8f877a41b2934669377cb053b45364ddb72716b520')
|
||||||
|
|
||||||
|
|
||||||
class GlslangTarget(base.CMakeStaticDependencyTarget):
|
class GlslangTarget(base.CMakeStaticDependencyTarget):
|
||||||
# Build with --os-version-x64=10.15 command line option
|
# Build with --os-version-x64=10.15 command line option
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue