mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-16 16:41:42 +00:00
aedi: disallow xcode mode for special targets
This commit is contained in:
parent
9ba9c03dc5
commit
35dc23a611
1 changed files with 4 additions and 0 deletions
|
@ -30,6 +30,8 @@ class CleanTarget(Target):
|
|||
self.args = ()
|
||||
|
||||
def build(self, state: BuildState):
|
||||
assert not state.xcode
|
||||
|
||||
args = ('git', 'clean') + self.args
|
||||
subprocess.check_call(args, cwd=state.root_path)
|
||||
|
||||
|
@ -54,6 +56,8 @@ class TestDepsTarget(BuildTarget):
|
|||
self.multi_platform = False
|
||||
|
||||
def build(self, state: BuildState):
|
||||
assert not state.xcode
|
||||
|
||||
test_path = state.root_path + 'test'
|
||||
|
||||
for entry in os.scandir(test_path):
|
||||
|
|
Loading…
Reference in a new issue