2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
|
|
|
|
2018-09-28 11:29:52 +00:00
|
|
|
import os
|
2018-03-17 22:23:55 +00:00
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
import platform_windows_builders
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-30 17:57:40 +00:00
|
|
|
common_win = [
|
2019-02-12 14:43:54 +00:00
|
|
|
"godot_windows.cpp",
|
|
|
|
"context_gl_windows.cpp",
|
|
|
|
"crash_handler_windows.cpp",
|
2016-10-30 17:44:57 +00:00
|
|
|
"os_windows.cpp",
|
2019-02-12 14:43:54 +00:00
|
|
|
"key_mapping_windows.cpp",
|
|
|
|
"joypad_windows.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
|
|
|
]
|
|
|
|
|
2018-09-01 03:53:18 +00:00
|
|
|
res_file = 'godot_res.rc'
|
|
|
|
res_target = "godot_res" + env["OBJSUFFIX"]
|
|
|
|
res_obj = env.RES(res_target, res_file)
|
2015-11-08 22:53:58 +00:00
|
|
|
|
2018-09-01 03:53:18 +00:00
|
|
|
prog = env.add_program('#bin/godot', common_win + res_obj, 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']:
|
2018-09-01 03:53:18 +00:00
|
|
|
env.vs_srcs = env.vs_srcs + ["platform/windows/" + res_file]
|
2018-09-16 00:50:39 +00:00
|
|
|
env.vs_srcs = env.vs_srcs + ["platform/windows/godot.natvis"]
|
2016-10-30 17:44:57 +00:00
|
|
|
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"]:
|
2018-03-17 22:23:55 +00:00
|
|
|
env.AddPostAction(prog, run_in_subprocess(platform_windows_builders.make_debug_mingw))
|