summaryrefslogtreecommitdiff
path: root/lua4win.wxs
blob: d3047364bddce1013f2584baec6963c3e344c464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Product
        UpgradeCode="A1B2C3D4-E5F6-G7H8-I9J0-K1L2M3N4O5P6"
        Id="ABCDDCBA-86c74D14AEC086416A69ABDE"
        Name="Lua4Win Installer 1.0"
        Version="1.0.0.0"
        Manufacturer="Lua4Win devs"
		Language="1033"
		Codepage="1252"
    >

		<Package Id="*" Description="Lua4Win Installation Package" Keywords="Installer"
						 InstallerVersion="100" Compressed="yes" />

		<Media Id='1' Cabinet='media.cab' EmbedCab='yes' />
		<Property Id="DiskPrompt" Value="Lua4Win lua+luarocks installation [1]" />

		<Directory Id="TARGETDIR" Name="SourceDir">
			<Directory Id="ProgramFilesFolder">
				<Directory Id="Lua4Win" Name="Lua4Win">
					<Directory Id="INSTALLDIR" Name="Lua4Win 1.0">
						<Component Id="luajit">
							<File Id="luajit.exe" DiskId='1' Source="luajit.exe" />
						</Component>
						<Component Id="luadl">
							<File Id="lua51.dll" DiskId='1' Source="lua51.dll" />
						</Component>
						<Component Id="luarocks">
							<File Id="luarocks.exe" DiskId='1' Source="luarocks.exe" />
						</Component>
						<Directory Id="Config" Name="config">
							<Component Id="Config">
								<File Id="config.lua" Source="config.lua" />
							</Component>
						</Directory>
					</Directory>
				</Directory>
			</Directory>
		</Directory>

		<Feature Id="Complete" Level="1">
			<ComponentRef Id="luajit" />
			<ComponentRef Id="luadl" />
			<ComponentRef Id="luarocks" />
			<ComponentRef Id="Config" />
		</Feature>

		<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
		<UIRef Id="WixUI_Minimal" />
	</Product>
</Wix>