1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

SCons: Dump construction environment to a file

A new `methods.dump(env)` is added to dump the construction environment
used by SCons to build Godot to a `.scons_env.json`. The file can be used
for debugging purposes and any external tool.
This commit is contained in:
Andrii Doroshenko (Xrayez)
2020-03-20 22:49:38 +02:00
parent 52814d111c
commit 42bee75e86
3 changed files with 18 additions and 1 deletions

View File

@@ -688,6 +688,9 @@ elif selected_platform != "":
else:
sys.exit(255)
# The following only makes sense when the env is defined, and assumes it is
# The following only makes sense when the 'env' is defined, and assumes it is.
if "env" in locals():
methods.show_progress(env)
# TODO: replace this with `env.Dump(format="json")`
# once we start requiring SCons 4.0 as min version.
methods.dump(env)