summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2024-10-09 11:47:52 -0500
committerAlexander M Pickering <alex@cogarr.net>2024-10-09 11:47:52 -0500
commitcfd4edd02cdf6f814970345a33adceb3bdb2fce3 (patch)
treef4226ce75b3ec3d3f5d65825ad2bbf57dee0a983
parent6466c6fe79bab1f68a1e16c1886e2b4eca225f60 (diff)
downloadlua4win-dist-lua-cfd4edd02cdf6f814970345a33adceb3bdb2fce3.tar.gz
lua4win-dist-lua-cfd4edd02cdf6f814970345a33adceb3bdb2fce3.tar.bz2
lua4win-dist-lua-cfd4edd02cdf6f814970345a33adceb3bdb2fce3.zip
Lots of fixes to wix installdir
-rw-r--r--lua4win.wxs25
1 files changed, 15 insertions, 10 deletions
diff --git a/lua4win.wxs b/lua4win.wxs
index 922a1ad..7012f96 100644
--- a/lua4win.wxs
+++ b/lua4win.wxs
@@ -1,17 +1,22 @@
1<?xml version='1.0' encoding='windows-1252'?> 1<?xml version='1.0' encoding='windows-1252'?>
2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3 <Product 3 <Product
4 UpgradeCode="A1B2C3D4-E5F6-G7H8-I9J0-K1L2M3N4O5P6" 4 UpgradeCode="A1B2C3D4-E5F6-A7B8-C9D0-E1F2A3B4C5D6"
5 Id="CABACABA-86C7-4D14-AEC0-86416A69ABDE" 5 Id="CABACABA-86C7-4D14-AEC0-86416A69ABDE"
6 Name="Lua4Win Installer 1.0" 6 Name="Lua4Win Installer 1.0"
7 Version="1.0.0.0" 7 Version="1.0.0.0"
8 Manufacturer="Lua4Win devs" 8 Manufacturer="Lua4Win devs"
9 Language="1033" 9 Language="1033"
10 Codepage="1252" 10 Codepage="1252"
11 > 11 >
12 12
13 <Package Id="*" Description="Lua4Win Installation Package" Keywords="Installer" 13 <Package
14 InstallerVersion="100" Compressed="yes" /> 14 Id="*"
15 Description="Lua4Win Installation Package"
16 Keywords="Installer"
17 InstallerVersion="100"
18 Compressed="yes"
19 />
15 20
16 <Media Id='1' Cabinet='media.cab' EmbedCab='yes' /> 21 <Media Id='1' Cabinet='media.cab' EmbedCab='yes' />
17 <Property Id="DiskPrompt" Value="Lua4Win lua+luarocks installation [1]" /> 22 <Property Id="DiskPrompt" Value="Lua4Win lua+luarocks installation [1]" />
@@ -47,6 +52,6 @@
47 </Feature> 52 </Feature>
48 53
49 <Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" /> 54 <Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
50 <UIRef Id="WixUI_Minimal" /> 55 <UIRef Id="WixUI_InstallDir" />
51 </Product> 56 </Product>
52</Wix> 57</Wix>