mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
22 lines
486 B
Plaintext
22 lines
486 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
Import("env")
|
||
|
|
||
|
files = [
|
||
|
"#platform/windows/key_mapping_windows.cpp",
|
||
|
"#platform/windows/windows_terminal_logger.cpp",
|
||
|
"joypad_uwp.cpp",
|
||
|
"power_uwp.cpp",
|
||
|
"context_egl_uwp.cpp",
|
||
|
"app.cpp",
|
||
|
"os_uwp.cpp",
|
||
|
]
|
||
|
|
||
|
if "build_angle" in env and env["build_angle"]:
|
||
|
cmd = env.AlwaysBuild(env.ANGLE("libANGLE.lib", None))
|
||
|
|
||
|
prog = env.add_program("#bin/godot", files)
|
||
|
|
||
|
if "build_angle" in env and env["build_angle"]:
|
||
|
env.Depends(prog, [cmd])
|