diff options
| author | Remko Tronçon <git@el-tramo.be> | 2011-12-24 11:25:29 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2011-12-24 11:25:29 (GMT) | 
| commit | b453b3bf94dcd40d71c30fd0053f7110cb52b211 (patch) | |
| tree | 9def95db92235b6e5e2f95a1bcb93b293e0d2678 | |
| parent | 3e2a3a4cdb0b6bc0cf79423c48400c544830177a (diff) | |
| download | swift-contrib-b453b3bf94dcd40d71c30fd0053f7110cb52b211.zip swift-contrib-b453b3bf94dcd40d71c30fd0053f7110cb52b211.tar.bz2 | |
Removing debug print.
| -rw-r--r-- | BuildTools/SCons/Tools/wix.py | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/BuildTools/SCons/Tools/wix.py b/BuildTools/SCons/Tools/wix.py index 2c5904b..7d1e4a2 100644 --- a/BuildTools/SCons/Tools/wix.py +++ b/BuildTools/SCons/Tools/wix.py @@ -1,41 +1,40 @@  import re, os  import SCons.Util  from subprocess import call  def generate(env) : -	print "Adding WiX to environment"  	wixPath = env.get("wix_bindir", "")  	if len(wixPath) > 0 and wixPath[-1] != "\\":  		wixPath += "\\"  	env['WIX_HEAT'] = wixPath + 'heat.exe'  	env['WIX_HEAT_OPTIONS'] = '-gg -sfrag -suid -template fragment -dr ProgramFilesFolder'  	env['WIX_CANDLE'] = wixPath + 'candle.exe'  	env['WIX_CANDLE_OPTIONS'] = ''  	env['WIX_LIGHT'] = wixPath + 'light.exe'  	env['WIX_LIGHT_OPTIONS'] = '-ext WixUIExtension'  	def WiX_IncludeScanner(source, env, path, arg):  		wixIncludeRegexp = re.compile(r'^\s*\<\?include (\S+.wxs)\s*\?\>\S*', re.M)  		contents = source.get_contents()  		includes = wixIncludeRegexp.findall(contents)  		return [ "" + include for include in includes ]  	heat_builder = SCons.Builder.Builder(   		action = '"$WIX_HEAT" dir Swift\\QtUI\\Swift -cg Files $WIX_HEAT_OPTIONS -o ${TARGET} -t Swift\\Packaging\\WiX\\include.xslt',  		suffix = '.wxi')  	candle_scanner = env.Scanner(name = 'wixincludefile',  		function = WiX_IncludeScanner,  		argument = None,  		skeys = ['.wxs'])  	candle_builder = SCons.Builder.Builder(   		action = '"$WIX_CANDLE" $WIX_CANDLE_OPTIONS ${SOURCES} -o ${TARGET}',  		src_suffix = '.wxs',  		suffix = '.wixobj',  		source_scanner = candle_scanner,   		src_builder = heat_builder)  	light_builder = SCons.Builder.Builder( | 
 Swift
 Swift