diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-12-08 17:04:24 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-12-08 17:04:24 -0300 |
commit | eff81965af5a7c8180889d55eb55992680e896a4 (patch) | |
tree | 0b2992a510ee9bb68da08be8773378509807ceef /SConstruct | |
parent | a6ac1fcd94c6433776d6f8c3fba4c48f36a4d8dd (diff) | |
parent | e1d02e4831fdec372771956aa2ac70954ab3fe7b (diff) |
Merge pull request #2956 from est31/add_system_wide_export_path
Add way to look for templates at system wide level too
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index f16f4f6d65..95ad0010a2 100644 --- a/SConstruct +++ b/SConstruct @@ -127,6 +127,7 @@ opts.Add("CXX", "Compiler"); opts.Add("CCFLAGS", "Custom flags for the C++ compiler"); opts.Add("CFLAGS", "Custom flags for the C compiler"); opts.Add("LINKFLAGS", "Custom flags for the linker"); +opts.Add('unix_global_settings_path', 'unix-specific path to system-wide settings. Currently only used by templates.','') opts.Add('disable_3d', 'Disable 3D nodes for smaller executable (yes/no)', "no") opts.Add('disable_advanced_gui', 'Disable advance 3D gui nodes and behaviors (yes/no)', "no") opts.Add('colored', 'Enable colored output for the compilation (yes/no)', 'no') |