Mercurial > hg > tony
view deploy/win32/build.cmd @ 497:c337e3f74838 2.0-integration
Adjust model update during recording or writing a new wave file. Formerly we were using the model's completion percentage to indicate write proportion and completion -- that's not a good idea because some layers will reasonably avoid rendering at all until a model reaches 100% completion (it's supposed to report only progress on the initial model generation, and the model shouldn't change during completion updates).
author | Chris Cannam |
---|---|
date | Tue, 13 Oct 2015 14:26:40 +0100 |
parents | 60779173dddf |
children |
line wrap: on
line source
@ECHO OFF SET WIXPATH="C:\Program Files (x86)\WiX Toolset v3.9\bin" IF NOT EXIST %WIXPATH% ( SET WIXPATH="C:\Program Files\WiX Toolset v3.9\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 )