summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2021-11-23 22:41:52 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2021-11-23 22:41:52 +0100
commit1e2eafe7773aec847049e8be4ca9b5dd929729c1 (patch)
tree3b1f44d0f0892c4cbeec72ba77f2f1a02e0053dc /SConstruct
parentadbc0bfe00322c3569ddacaef43dc43d3e731a49 (diff)
downloadredot-cpp-1e2eafe7773aec847049e8be4ca9b5dd929729c1.tar.gz
Print a warning with unknown SCons variables to ease troubleshooting
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 7 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index ac76579..2ccfbbb 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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