annotate deploy/win32/build.cmd @ 496:109016400b9c 2.0-integration

Update analysis stuff when recording starts (and when model is added) rather than when it ends. Not continuing to update during recording though...
author Chris Cannam
date Mon, 12 Oct 2015 17:10:43 +0100
parents 60779173dddf
children
rev   line source
Chris@87 1 @ECHO OFF
Chris@458 2 SET WIXPATH="C:\Program Files (x86)\WiX Toolset v3.9\bin"
Chris@87 3 IF NOT EXIST %WIXPATH% (
Chris@458 4 SET WIXPATH="C:\Program Files\WiX Toolset v3.9\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 )