2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
2014-09-15 11:33:30 -03:00
|
|
|
|
|
|
|
files = [
|
2020-03-30 08:28:32 +02:00
|
|
|
"#platform/windows/key_mapping_windows.cpp",
|
|
|
|
"#platform/windows/windows_terminal_logger.cpp",
|
|
|
|
"joypad_uwp.cpp",
|
|
|
|
"context_egl_uwp.cpp",
|
2021-09-24 01:19:49 +02:00
|
|
|
"app_uwp.cpp",
|
2020-03-30 08:28:32 +02:00
|
|
|
"os_uwp.cpp",
|
2014-09-15 11:33:30 -03:00
|
|
|
]
|
|
|
|
|
2016-09-20 20:02:58 -03:00
|
|
|
if "build_angle" in env and env["build_angle"]:
|
2020-03-30 08:28:32 +02:00
|
|
|
cmd = env.AlwaysBuild(env.ANGLE("libANGLE.lib", None))
|
2016-09-03 19:25:43 -03:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
prog = env.add_program("#bin/godot", files)
|
2016-09-20 20:02:58 -03:00
|
|
|
|
|
|
|
if "build_angle" in env and env["build_angle"]:
|
2016-10-30 18:44:57 +01:00
|
|
|
env.Depends(prog, [cmd])
|