2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
iphone_lib = [
|
2020-03-30 08:28:32 +02:00
|
|
|
"godot_iphone.cpp",
|
|
|
|
"os_iphone.cpp",
|
|
|
|
"semaphore_iphone.cpp",
|
|
|
|
"gl_view.mm",
|
|
|
|
"main.m",
|
|
|
|
"app_delegate.mm",
|
|
|
|
"view_controller.mm",
|
|
|
|
"game_center.mm",
|
|
|
|
"in_app_store.mm",
|
|
|
|
"icloud.mm",
|
|
|
|
"ios.mm",
|
|
|
|
"vulkan_context_iphone.mm",
|
2014-02-10 02:10:30 +01:00
|
|
|
]
|
|
|
|
|
2016-11-01 00:24:30 +01:00
|
|
|
env_ios = env.Clone()
|
2020-03-30 08:28:32 +02: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:
|
2020-03-30 08:28:32 +02:00
|
|
|
libtool = "$IPHONEPATH/usr/bin/${ios_triple}libtool"
|
2018-03-28 18:45:54 +02:00
|
|
|
else:
|
|
|
|
libtool = "$IPHONEPATH/usr/bin/libtool"
|
2020-03-30 08:28:32 +02:00
|
|
|
env.Execute(
|
|
|
|
libtool + ' -static -o "' + lib_path + '" ' + " ".join([('"' + lib.srcnode().abspath + '"') for lib in source])
|
|
|
|
)
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
combine_command = env_ios.Command("#bin/libgodot" + env_ios["LIBSUFFIX"], [ios_lib] + env_ios["LIBS"], combine_libs)
|