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

View file

@ -478,7 +478,9 @@ class QuakespasmExpTarget(CMakeMainTarget):
opts['QUAKE_MACOS_BUNDLE'] = 'OFF' opts['QUAKE_MACOS_BUNDLE'] = 'OFF'
opts['QUAKE_MACOS_MOUSE_ACCELERATION'] = 'ON' 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 opts['MakeQuakePak_DIR'] = state.native_build_path
super().configure(state) super().configure(state)