Skip to content

Commit

Permalink
aedi: add dzip target to tier 2 tools
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Aug 3, 2023
1 parent 7b34f76 commit 469f747
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions aedi/target/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ def targets():
YasmTarget(),

# Tools without binaries stored in the repo, can be outdated
DzipTarget(),
GlslangTarget(),
P7ZipTarget(),
PbzxTarget(),
Expand Down
10 changes: 10 additions & 0 deletions aedi/target/tool_tier2.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@
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):
# Build with --os-version-x64=10.15 command line option

Expand Down

0 comments on commit 469f747

Please sign in to comment.