diff options
author | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2020-03-20 22:49:38 +0200 |
---|---|---|
committer | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2020-06-10 15:05:43 +0300 |
commit | 42bee75e86e81fcd9b51b2e960d13b89b18ad4bf (patch) | |
tree | 8cc66e767c5251a81d814a55db46b90df0503d22 /SConstruct | |
parent | 52814d111c3e522cb320bd7e17c61f914d7b9a3a (diff) | |
download | redot-engine-42bee75e86e81fcd9b51b2e960d13b89b18ad4bf.tar.gz |
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.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index fe94715bba..fa13eec502 100644 --- a/SConstruct +++ b/SConstruct @@ -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) |