Added message for library bundling step

This commit is contained in:
Kreeblah 2021-11-05 09:37:20 -07:00 committed by Kp
parent 13d3af3123
commit 9a14d734bb

View file

@ -5288,6 +5288,7 @@ class DXXProgram(DXXCommon):
icon_file=os.path.join(cocoa, '%s-rebirth.icns' % dxxstr),
resources=[[os.path.join(self.srcdir, s), s] for s in ['English.lproj/InfoPlist.strings']])
if self.user_settings.macos_bundle_libs and not self.user_settings.macos_add_frameworks:
print('Bundling libraries for %s' % self.PROGRAM_NAME)
dylibbundler_process = StaticSubprocess.pcall(('dylibbundler', '-od', '-b', '-x', '%s.app/Contents/MacOS/%s-rebirth' % (self.PROGRAM_NAME, dxxstr), '-d', '%s.app/Contents/libs' % self.PROGRAM_NAME))
class D1XProgram(DXXProgram):