annotate deploy/win32/build.cmd @ 516:449a0355f864 v2.0_osx_deploy

Deployment fixes. Qt on OSX now seems to depend on QtDBus, so copy that in, and also fail if anything is found to depend on an absent Qt framework.
author Chris Cannam
date Fri, 23 Oct 2015 08:50:39 +0100
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 )