2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
iphone_lib = [
|
2017-10-02 17:01:43 +02:00
|
|
|
'godot_iphone.cpp',
|
2016-10-30 18:44:57 +01:00
|
|
|
'os_iphone.cpp',
|
2019-02-12 15:43:54 +01:00
|
|
|
'semaphore_iphone.cpp',
|
2016-10-30 18:44:57 +01:00
|
|
|
'gl_view.mm',
|
|
|
|
'main.m',
|
|
|
|
'app_delegate.mm',
|
|
|
|
'view_controller.mm',
|
|
|
|
'game_center.mm',
|
|
|
|
'in_app_store.mm',
|
|
|
|
'icloud.mm',
|
|
|
|
'ios.mm',
|
2020-02-22 07:01:13 +01:00
|
|
|
'vulkan_context_iphone.mm',
|
2014-02-10 02:10:30 +01:00
|
|
|
]
|
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
env_ios = env.Clone()
|
2017-11-28 21:27:57 +01:00
|
|
|
ios_lib = env_ios.add_library('iphone', iphone_lib)
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-10-02 17:01:43 +02:00
|
|
|
def combine_libs(target=None, source=None, env=None):
|
|
|
|
lib_path = target[0].srcnode().abspath
|
2018-12-22 12:31:43 +01:00
|
|
|
if "osxcross" in env:
|
2018-03-28 18:45:54 +02:00
|
|
|
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]))
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-10-02 17:01:43 +02:00
|
|
|
combine_command = env_ios.Command('#bin/libgodot' + env_ios['LIBSUFFIX'], [ios_lib] + env_ios['LIBS'], combine_libs)
|