view deploy/win32/build.cmd @ 372:9dbe992755c6

OS/X: When augmenting a single-key shortcut associated with an action with a global shortcut, leave the shortcut attached to the original action as well if it is a menu action with no toolbar button. Do not augment toolbar actions with global shortcuts. Aims to fix #1009 (single-key shortcuts work, but do not appear in menu)
author Chris Cannam
date Fri, 18 Jul 2014 13:25:11 +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
)