Browse Source

Merge pull request #661 from Calinou/scons-warn-unknown-variables

Rémi Verschelde 3 years ago
parent
commit
d619c612d5
1 changed files with 7 additions and 0 deletions
  1. 7 0
      SConstruct

+ 7 - 0
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