-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstaller-en.wxs
65 lines (65 loc) · 4.57 KB
/
installer-en.wxs
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
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="6A1AB76D-8487-4C1C-AE39-0B4E2137EFB0" Name="Karasunpo Pro" Language="1033" Version="1.2" Manufacturer="Katayama Hirofumi MZ" UpgradeCode="4CBBFE76-A4BE-42E1-BB94-56B70D22CB3A" Codepage="1252">
<Package Description="Karasunpo Pro" Comments="Measures nominal length/angle" InstallerVersion="200" Compressed="yes" SummaryCodepage="1252" />
<Media Id="1" Cabinet="simple.cab" EmbedCab="yes" CompressionLevel="high" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="DesktopFolder" />
<Directory Id="ProgramFilesFolder" Name="PFiles">
<Directory Id="APPLICATIONROOTDIRECTORY" Name="KarasunpoPro">
<Component Id="karasunpo.exe" Guid="007EE244-D9A1-4B98-ADEA-53042E92B70F">
<File Id="KARASUNPO.EXE" Name="karasunpo.exe" Source="karasunpo\karasunpo.exe" KeyPath="yes">
<Shortcut Id="KarasunpoDesktopShortcut" Directory="DesktopFolder" Name="Karasunpo" Description="Launch Karasunpo" Advertise="yes" Icon="karasunpo.exe" IconIndex="0" />
</File>
</Component>
<Component Id="README.txt" Guid="D3EFA8B9-8152-492F-80E3-4DBA1D3C222D">
<File Id="README.TXT" Name="README.txt" Source="README.txt" />
</Component>
<Component Id="LICENSE.txt" Guid="A98E60BD-6C92-4787-9248-9796AFDC0E5C">
<File Id="LICENSE.TXT" Name="LICENSE.txt" Source="LICENSE.txt" />
</Component>
<Directory Id="X86" Name="x86">
<Component Id="PDFIUM.DLL" DiskId="1" Guid="7C9B31D2-66C3-4E45-ABD4-5F5D9C4A9A5B">
<File Id="PDFIUM.DLL" Name="pdfium.dll" Source="katahiromz_pdfium\x86\pdfium.dll" />
</Component>
</Directory>
</Directory>
</Directory>
<Directory Id="ProgramMenuFolder">
<Directory Id="ApplicationProgramsFolder" Name="Karasunpo" />
</Directory>
</Directory>
<DirectoryRef Id="ApplicationProgramsFolder">
<Component Id="ApplicationShortcut" Guid="8EF8C514-DF73-4079-970C-89B6B1BF07E1">
<Shortcut Id="ApplicationStartMenuShortcut" Name="Karasunpo" Description="Karasunpo" Target="[APPLICATIONROOTDIRECTORY]karasunpo.exe" WorkingDirectory="APPLICATIONROOTDIRECTORY" />
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall" />
<RegistryValue Root="HKCU" Key="Software\Katayama Hirofumi MZ\karasunpo" Name="Installed" Type="integer" Value="1" KeyPath="yes" />
<Shortcut Id="UninstallProduct" Name="Uninstall Karasunpo" Target="[System64Folder]msiexec.exe" Arguments="/x [ProductCode]" Description="Uninstalls Karasunpo" />
<Shortcut Id="README.TXT" Name="README.txt" Target="[APPLICATIONROOTDIRECTORY]README.txt" Description="Read me first" />
<Shortcut Id="LICENSE.TXT" Name="LICENSE.txt" Target="[APPLICATIONROOTDIRECTORY]LICENSE.txt" Description="License" />
</Component>
</DirectoryRef>
<DirectoryRef Id="APPLICATIONROOTDIRECTORY">
<Component Id="ApplicationShortcut2" Guid="8EF8C514-DF73-4079-970C-89B6B1BF07E2">
<Shortcut Id="UninstallProduct2" Name="Uninstall" Target="[System64Folder]msiexec.exe" Arguments="/x [ProductCode]" Description="Uninstall Karasunpo" />
<RemoveFolder Id="APPLICATIONROOTDIRECTORY" On="uninstall" />
</Component>
</DirectoryRef>
<Feature Id="DefaultFeature" Title="Main Feature" Level="1">
<ComponentRef Id="karasunpo.exe" />
<ComponentRef Id="LICENSE.txt" />
<ComponentRef Id="README.txt" />
<ComponentRef Id="PDFIUM.DLL" />
<ComponentRef Id="ApplicationShortcut" />
<ComponentRef Id="ApplicationShortcut2" />
</Feature>
<UI />
<UIRef Id="WixUI_InstallDir" />
<Property Id="WIXUI_INSTALLDIR" Value="APPLICATIONROOTDIRECTORY" />
<WixVariable Id="WixUILicenseRtf" Value="LICENSE.rtf" />
<WixVariable Id="WixUIBannerBmp" Value="installer-banner.bmp" />
<WixVariable Id="WixUIDialogBmp" Value="installer-dialog.bmp" />
<Icon Id="karasunpo.exe" SourceFile="C:\dev\KarasunpoProject\karasunpo\karasunpo\res\Icon_1.ico" />
<Property Id="ARPPRODUCTICON" Value="karasunpo.exe" />
</Product>
</Wix>