diff options
| author | Remko Tronçon <git@el-tramo.be> | 2009-11-27 19:06:47 (GMT) |
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2009-11-27 19:06:47 (GMT) |
| commit | aa09a889108c4d0e3c5888ad98958d8f3e12bd3b (patch) | |
| tree | 3c621ae0a6e2150281be182b37e2837b804adcba /SConstruct | |
| parent | c89ef0ffae597ac8c1063732e1d9a2d84703a80c (diff) | |
| download | swift-aa09a889108c4d0e3c5888ad98958d8f3e12bd3b.zip swift-aa09a889108c4d0e3c5888ad98958d8f3e12bd3b.tar.bz2 | |
Added MD5 hashing algorithm.
Moved 'hexifying' of hashes into its own class, such that it can be
shared between all hashes.
Diffstat (limited to 'SConstruct')
| -rw-r--r-- | SConstruct | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,8 +1,9 @@ import sys, os sys.path.append(Dir("BuildTools/SCons").abspath) +import SCons.SConf ################################################################################ # Build variables ################################################################################ vars = Variables("config.py") @@ -156,12 +157,15 @@ if int(ARGUMENTS.get("V", 0)) == 0: #Progress(colorize("DEP", "$TARGET", "red") ################################################################################ # Platform configuration ################################################################################ +if ARGUMENTS.get("force-configure", 0) : + SCons.SConf.SetCacheMode("force") + conf = Configure(conf_env) if conf.CheckLib("z") : env.Append(LIBS = "z") env["ZLIB_FLAGS"] = "" else : |
Swift