Mercurial > hg > tony
view deploy/win32/build.cmd @ 343:6d9adf82347d
Colour in the pan & gain dials. This isn't a good solution to the difficulty of remembering which is which -- not least because they're still indistinguishable if you're red-green colourblind. But it is probably better than what we had, and it's consistent with SV. Meanwhile see bug #984 about finding a better solution.
author | Chris Cannam |
---|---|
date | Mon, 16 Jun 2014 11:45:57 +0100 |
parents | 7777fa612a16 |
children | 60779173dddf |
line wrap: on
line source
@ECHO OFF SET WIXPATH="C:\Program Files (x86)\WiX Toolset v3.8\bin" IF NOT EXIST %WIXPATH% ( SET WIXPATH="C:\Program Files\WiX Toolset v3.8\bin" ) IF NOT EXIST %WIXPATH% ( ECHO "WiX not found, exiting" ) IF EXIST %WIXPATH% ( DEL tony.msi %WIXPATH%\candle.exe -v tony.wxs %WIXPATH%\light.exe -b ..\.. -ext WixUIExtension -v tony.wixobj PAUSE DEL tony.wixobj DEL tony.wixpdb )