diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-11-23 22:41:52 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-11-23 22:41:52 +0100 |
commit | 1e2eafe7773aec847049e8be4ca9b5dd929729c1 (patch) | |
tree | 3b1f44d0f0892c4cbeec72ba77f2f1a02e0053dc /SConstruct | |
parent | adbc0bfe00322c3569ddacaef43dc43d3e731a49 (diff) | |
download | redot-cpp-1e2eafe7773aec847049e8be4ca9b5dd929729c1.tar.gz |
Print a warning with unknown SCons variables to ease troubleshooting
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -147,6 +147,13 @@ opts.Add(BoolVariable("generate_template_get_node", "Generate a template version opts.Update(env) Help(opts.GenerateHelpText(env)) +# Detect and print a warning listing unknown SCons variables to ease troubleshooting. +unknown = opts.UnknownVariables() +if unknown: + print("WARNING: Unknown SCons variables were passed and will be ignored:") + for item in unknown.items(): + print(" " + item[0] + "=" + item[1]) + # This makes sure to keep the session environment variables on Windows. # This way, you can run SCons in a Visual Studio 2017 prompt and it will find # all the required tools |