2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2017-09-13 17:32:24 +00:00
|
|
|
import os
|
2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
|
|
|
|
2017-09-13 17:32:24 +00:00
|
|
|
def make_debug_mingw(target, source, env):
|
2017-12-11 16:00:08 +00:00
|
|
|
mingw_prefix = ""
|
|
|
|
if (env["bits"] == "32"):
|
|
|
|
mingw_prefix = env["mingw_prefix_32"]
|
|
|
|
else:
|
|
|
|
mingw_prefix = env["mingw_prefix_64"]
|
2017-12-16 12:54:14 +00:00
|
|
|
os.system(mingw_prefix + 'objcopy --only-keep-debug %s %s.debugsymbols' % (target[0], target[0]))
|
2017-12-11 16:00:08 +00:00
|
|
|
os.system(mingw_prefix + 'strip --strip-debug --strip-unneeded %s' % (target[0]))
|
2017-12-16 12:54:14 +00:00
|
|
|
os.system(mingw_prefix + 'objcopy --add-gnu-debuglink=%s.debugsymbols %s' % (target[0], target[0]))
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-30 17:57:40 +00:00
|
|
|
common_win = [
|
2016-10-30 17:44:57 +00:00
|
|
|
"context_gl_win.cpp",
|
2017-09-08 01:01:49 +00:00
|
|
|
"crash_handler_win.cpp",
|
2016-10-30 17:44:57 +00:00
|
|
|
"os_windows.cpp",
|
|
|
|
"ctxgl_procaddr.cpp",
|
|
|
|
"key_mapping_win.cpp",
|
2017-01-08 20:29:57 +00:00
|
|
|
"joypad.cpp",
|
2017-09-08 01:01:49 +00:00
|
|
|
"power_windows.cpp",
|
2017-09-22 05:56:02 +00:00
|
|
|
"windows_terminal_logger.cpp"
|
2014-02-10 01:10:30 +00:00
|
|
|
]
|
|
|
|
|
2016-10-30 17:57:40 +00:00
|
|
|
restarget = "godot_res" + env["OBJSUFFIX"]
|
2015-11-24 13:42:05 +00:00
|
|
|
|
2016-10-30 17:57:40 +00:00
|
|
|
obj = env.RES(restarget, 'godot_res.rc')
|
2015-11-24 13:42:05 +00:00
|
|
|
|
|
|
|
common_win.append(obj)
|
2015-11-08 22:53:58 +00:00
|
|
|
|
2017-11-28 20:27:57 +00:00
|
|
|
prog = env.add_program('#bin/godot', ['godot_win.cpp'] + common_win, PROGSUFFIX=env["PROGSUFFIX"])
|
2015-05-03 21:18:56 +00:00
|
|
|
|
2015-11-08 22:53:58 +00:00
|
|
|
# Microsoft Visual Studio Project Generation
|
2017-09-25 04:04:49 +00:00
|
|
|
if env['vsproj']:
|
2016-10-30 17:44:57 +00:00
|
|
|
env.vs_srcs = env.vs_srcs + ["platform/windows/godot_win.cpp"]
|
|
|
|
for x in common_win:
|
|
|
|
env.vs_srcs = env.vs_srcs + ["platform/windows/" + str(x)]
|
2017-09-13 17:32:24 +00:00
|
|
|
|
|
|
|
if not os.getenv("VCINSTALLDIR"):
|
2018-01-26 19:46:56 +00:00
|
|
|
if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]:
|
2017-11-27 13:39:05 +00:00
|
|
|
env.AddPostAction(prog, make_debug_mingw)
|