Browse Source

Add support to import custom variables from parent SConstruct (redux)

Adam Scott 1 year ago
parent
commit
982e01ec7f
1 changed files with 4 additions and 0 deletions
  1. 4 0
      SConstruct

+ 4 - 0
SConstruct

@@ -22,6 +22,10 @@ env.PrependENVPath("PATH", os.getenv("PATH"))
 
 
 # Custom options and profile flags.
 # Custom options and profile flags.
 customs = ["custom.py"]
 customs = ["custom.py"]
+try:
+    customs += Import("customs")
+except:
+    pass
 profile = ARGUMENTS.get("profile", "")
 profile = ARGUMENTS.get("profile", "")
 if profile:
 if profile:
     if os.path.isfile(profile):
     if os.path.isfile(profile):