mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
build script: mark arm64 as unsupported for lzdoom target
This commit is contained in:
parent
27df9cc015
commit
ea42013015
1 changed files with 1 additions and 0 deletions
1
build.py
1
build.py
|
@ -552,6 +552,7 @@ class QZDoomTarget(GZDoomTarget):
|
|||
class LZDoomTarget(ZDoomBaseTarget):
|
||||
def __init__(self, name='lzdoom'):
|
||||
super().__init__(name)
|
||||
self.unsupported_architectures = ('arm64',)
|
||||
|
||||
def prepare_source(self, builder: 'Builder'):
|
||||
builder.checkout_git('https://github.com/drfrag666/gzdoom.git')
|
||||
|
|
Loading…
Reference in a new issue