diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-08-11 19:21:21 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-08-11 19:21:21 (GMT) |
commit | 8fa9a04d820f73dc00b3dcb137b417b846e6ff68 (patch) | |
tree | b7437903c38986df94e216907687cbb652352cae /SConstruct | |
parent | 3f94565804fce16c98e77e59934e87f95c2b1320 (diff) | |
download | swift-8fa9a04d820f73dc00b3dcb137b417b846e6ff68.zip swift-8fa9a04d820f73dc00b3dcb137b417b846e6ff68.tar.bz2 |
Disable debug on windows by default.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ import sys, os vars = Variables("config.py") vars.Add(BoolVariable("optimize", "Compile with optimizations turned on", "no")) -vars.Add(BoolVariable("debug", "Compile with debug information", "yes")) +vars.Add(BoolVariable("debug", "Compile with debug information", "yes" if os.name != "nt" else "no")) vars.Add(BoolVariable("warnings", "Compile with warnings turned on", "yes" if os.name != "nt" else "no")) if os.name != "nt" : |