aedi: do not build engine .pak when generation xcode project for quakespasm-exp target

This commit is contained in:
alexey.lysiuk 2023-08-26 09:47:42 +03:00
parent 8c8a90d3cd
commit f877171363
1 changed files with 3 additions and 1 deletions

View File

@ -478,7 +478,9 @@ class QuakespasmExpTarget(CMakeMainTarget):
opts['QUAKE_MACOS_BUNDLE'] = 'OFF'
opts['QUAKE_MACOS_MOUSE_ACCELERATION'] = 'ON'
if state.architecture() != machine():
if state.xcode:
opts['QUAKE_BUILD_ENGINE_PAK'] = 'OFF'
elif state.architecture() != machine():
opts['MakeQuakePak_DIR'] = state.native_build_path
super().configure(state)