annotate deploy/win32/build.cmd @ 492:6e484c58ca25 recording

Restore record button toggle state if user cancels file session save dialog after hitting record
author Chris Cannam
date Mon, 12 Oct 2015 13:24:12 +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 )