diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-02-04 21:41:49 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-02-04 21:41:49 (GMT) |
commit | d18f20669671991825230fe956acd472cca999fc (patch) | |
tree | 1b518a83909ffb93fd49f051af6ee6512b41181b /BuildTools/SCons/SConstruct | |
parent | 76cffe6bf98c95af728d01e015d2ee767e1eabc6 (diff) | |
download | swift-contrib-d18f20669671991825230fe956acd472cca999fc.zip swift-contrib-d18f20669671991825230fe956acd472cca999fc.tar.bz2 |
Cleaned up some unused code.
Diffstat (limited to 'BuildTools/SCons/SConstruct')
-rw-r--r-- | BuildTools/SCons/SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index e2d46c5..5952629 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -22,6 +22,7 @@ vars.Add(BoolVariable("warnings", "Compile with warnings turned on", "yes" if os.name != "nt" else "no")) vars.Add(BoolVariable("max_jobs", "Build with maximum number of parallel jobs", "no")) vars.Add(EnumVariable("target", "Choose a target platform for compilation", "native", ["native", "iphone-simulator", "iphone-device", "xcode"])) +vars.Add(BoolVariable("swift_mobile", "Build mobile Swift", "no")) if os.name != "nt" : vars.Add(BoolVariable("coverage", "Compile with coverage information", "no")) if os.name == "posix" : |