annotate deploy/win32/build.cmd @ 382:a5e63c0af39a tonioni_experiment_july2014 v0.7_experiment_july2014

Fix to settings reset -- needs to happen before the MainWindow ctor to avoid breaking behaviour within the current run!
author Chris Cannam
date Mon, 21 Jul 2014 15:23:10 +0100
parents 7777fa612a16
children 60779173dddf
rev   line source
Chris@87 1 @ECHO OFF
Chris@305 2 SET WIXPATH="C:\Program Files (x86)\WiX Toolset v3.8\bin"
Chris@87 3 IF NOT EXIST %WIXPATH% (
Chris@305 4 SET WIXPATH="C:\Program Files\WiX Toolset v3.8\bin"
Chris@87 5 )
Chris@305 6 IF NOT EXIST %WIXPATH% (
Chris@305 7 ECHO "WiX not found, exiting"
Chris@305 8 )
Chris@305 9 IF EXIST %WIXPATH% (
Chris@305 10 DEL tony.msi
Chris@305 11 %WIXPATH%\candle.exe -v tony.wxs
Chris@305 12 %WIXPATH%\light.exe -b ..\.. -ext WixUIExtension -v tony.wixobj
Chris@305 13 PAUSE
Chris@305 14 DEL tony.wixobj
Chris@305 15 DEL tony.wixpdb
Chris@305 16 )