2016-10-17 14:50:25 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-09-15 22:33:30 +08:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
files = [
|
2016-11-03 04:26:42 +08:00
|
|
|
'thread_uwp.cpp',
|
2019-02-12 22:43:54 +08:00
|
|
|
'#platform/windows/key_mapping_windows.cpp',
|
2017-10-22 22:15:59 +08:00
|
|
|
'#platform/windows/windows_terminal_logger.cpp',
|
2017-01-09 04:29:57 +08:00
|
|
|
'joypad_uwp.cpp',
|
2017-04-29 22:48:23 +08:00
|
|
|
'power_uwp.cpp',
|
2019-02-12 22:43:54 +08:00
|
|
|
'context_egl_uwp.cpp',
|
2016-10-31 01:44:57 +08:00
|
|
|
'app.cpp',
|
2016-11-03 04:26:42 +08:00
|
|
|
'os_uwp.cpp',
|
2014-09-15 22:33:30 +08:00
|
|
|
]
|
|
|
|
|
2016-09-21 07:02:58 +08:00
|
|
|
if "build_angle" in env and env["build_angle"]:
|
2016-10-31 01:44:57 +08:00
|
|
|
cmd = env.AlwaysBuild(env.ANGLE('libANGLE.lib', None))
|
2016-09-04 06:25:43 +08:00
|
|
|
|
2017-11-29 04:27:57 +08:00
|
|
|
prog = env.add_program('#bin/godot', files)
|
2016-09-21 07:02:58 +08:00
|
|
|
|
|
|
|
if "build_angle" in env and env["build_angle"]:
|
2016-10-31 01:44:57 +08:00
|
|
|
env.Depends(prog, [cmd])
|