view deploy/win32/build.cmd @ 486:478e8669df94 recording

Attempt to distinguish audio file path (== location and name of audio file that was loaded) from audio folder (== where new audio is recorded). Not entirely satisfactory
author Chris Cannam
date Wed, 16 Sep 2015 11:18:13 +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
)