diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-11-16 12:08:21 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-11-16 12:25:52 +0100 |
commit | 826d69460b4c547777e8be641748b39e40383ecb (patch) | |
tree | 1a9bab17fe151b69fb09e5b96ca9db782b6c3e37 /data | |
parent | a9d314f65724995181bd3ae4b34bd5c5995e7144 (diff) |
wix: add support for menu shortcuts
Diffstat (limited to 'data')
-rw-r--r-- | data/wix/Config.wxi | 1 | ||||
-rw-r--r-- | data/wix/installer.wxs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/data/wix/Config.wxi b/data/wix/Config.wxi index 3926c82a..45c47476 100644 --- a/data/wix/Config.wxi +++ b/data/wix/Config.wxi @@ -12,5 +12,6 @@ <?define ProductName = "@ProductName@" ?> <?define PlatformProgramFilesFolder = "@ProgramFilesFolder@" ?> <?define Platform = "@Platform@" ?> +<?define UIType = "@UIType@" ?> </Include> diff --git a/data/wix/installer.wxs b/data/wix/installer.wxs index 8ac65a45..7366ab4d 100644 --- a/data/wix/installer.wxs +++ b/data/wix/installer.wxs @@ -27,6 +27,6 @@ </InstallUISequence> <Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR"/> - <UIRef Id="WixUI_Mondo"/> + <UIRef Id="$(var.UIType)"/> </Product> </Wix> |