Mercurial > hg > tony
annotate deploy/win32/build.cmd @ 199:0ba33d6c0a71
Properly rationalise the show/hide/add/remove layer logic for pitch candidates: ctrl+return maps through to a show layer command (but the layers remain in the view) while the add/remove layer flow is used for layer creation after selection and for abandoning an edit or discarding a selection.
author | Chris Cannam |
---|---|
date | Wed, 05 Mar 2014 13:20:26 +0000 |
parents | c6603f0ddde5 |
children | 7777fa612a16 |
rev | line source |
---|---|
Chris@87 | 1 @ECHO OFF |
Chris@87 | 2 SET WIXPATH="C:\Program Files (x86)\WiX Toolset v3.7\bin" |
Chris@87 | 3 IF NOT EXIST %WIXPATH% ( |
Chris@87 | 4 SET WIXPATH="C:\Program Files\WiX Toolset v3.7\bin" |
Chris@87 | 5 ) |
Chris@87 | 6 DEL tony.msi |
Chris@87 | 7 %WIXPATH%\candle.exe -v tony.wxs |
Chris@87 | 8 %WIXPATH%\light.exe -b ..\.. -ext WixUIExtension -v tony.wixobj |
Chris@87 | 9 PAUSE |
Chris@87 | 10 DEL tony.wixobj |
Chris@87 | 11 DEL tony.wixpdb |