build script: skip bundle copying for xcode project

This commit is contained in:
alexey.lysiuk 2020-06-13 12:46:15 +03:00
parent 860514d9f4
commit c4be59b419

View file

@ -190,6 +190,9 @@ class PrBoomPlusTarget(Target):
@staticmethod
def _copy_bundle(builder: 'Builder'):
if builder.xcode:
return
src_path = builder.build_path + 'Launcher.app'
dst_path = builder.build_path + builder.target.name + '.app'