Mercurial > hg > tony
annotate deploy/win32/build.cmd @ 211:e79f63161b41
Rework key shortcuts after issue #890: merge the octave up/down and candidate up/down functions and make all Tony pitch-editing functions have Ctrl modifier
author | Chris Cannam |
---|---|
date | Thu, 06 Mar 2014 14:31:04 +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 |