Mercurial > hg > tony
annotate deploy/win32/build.cmd @ 541:fea109b93831
Fixes to plugin path handling: use application path (even if not default); support wide-char APIs on Windows
author | Chris Cannam |
---|---|
date | Wed, 13 Feb 2019 10:33:44 +0000 |
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 ) |