瀏覽代碼

Merge pull request #1220 from adamscott/add-local-custom-support-redux

Add support to import custom variables from parent SConstruct (redux)
David Snopek 1 年之前
父節點
當前提交
381df0081a
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      SConstruct

+ 4 - 0
SConstruct

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