3a2ca68af3
Also remove unnecessary `Export('env')` in other SCsubs, Export should only be used when exporting *new* objects.
32 lines
868 B
Python
32 lines
868 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
import os
|
|
|
|
iphone_lib = [
|
|
'godot_iphone.cpp',
|
|
'os_iphone.cpp',
|
|
'sem_iphone.cpp',
|
|
'gl_view.mm',
|
|
'main.m',
|
|
'app_delegate.mm',
|
|
'view_controller.mm',
|
|
'game_center.mm',
|
|
'in_app_store.mm',
|
|
'icloud.mm',
|
|
'ios.mm',
|
|
]
|
|
|
|
env_ios = env.Clone()
|
|
ios_lib = env_ios.add_library('iphone', iphone_lib)
|
|
|
|
def combine_libs(target=None, source=None, env=None):
|
|
lib_path = target[0].srcnode().abspath
|
|
if ("OSXCROSS_IOS" in os.environ):
|
|
libtool = '$IPHONEPATH/usr/bin/${ios_triple}libtool'
|
|
else:
|
|
libtool = "$IPHONEPATH/usr/bin/libtool"
|
|
env.Execute(libtool + ' -static -o "' + lib_path + '" ' + ' '.join([('"' + lib.srcnode().abspath + '"') for lib in source]))
|
|
|
|
combine_command = env_ios.Command('#bin/libgodot' + env_ios['LIBSUFFIX'], [ios_lib] + env_ios['LIBS'], combine_libs)
|