-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FEATURE : Build MSI for windows version of hk.exe.
- Loading branch information
1 parent
55d87d5
commit 1508abd
Showing
4 changed files
with
72 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,5 @@ example/ | |
temp/ | ||
hk | ||
hk.exe | ||
hk-* | ||
hk.msi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version='1.0' encoding='windows-1252'?> | ||
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'> | ||
<Product Name='HitchKey 0.7.0' Id='13AB1D01-BB41-4013-B796-C6CEBBD50A19' UpgradeCode='B27B57D6-8A59-44CD-8E79-329091C3B701' | ||
Language='1033' Codepage='1252' Version='1.0.0' Manufacturer='HitchDev'> | ||
|
||
<Package Id='*' Keywords='Installer' Description="HitchKey Installer" | ||
Comments='' Manufacturer='HitchDev' | ||
InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' /> | ||
|
||
<Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1" /> | ||
<Property Id='DiskPrompt' Value="HitchKey Installation [1]" /> | ||
|
||
<Directory Id='TARGETDIR' Name='SourceDir'> | ||
<Directory Id='ProgramFilesFolder' Name='PFiles'> | ||
<Directory Id='HitchKey' Name='HitchKey'> | ||
<Directory Id='INSTALLDIR' Name='HitchKey'> | ||
|
||
<Component Id='MainExecutable' Guid='ABCDDCBA-83F1-4F22-985B-FDB3C8ABD471'> | ||
<File Id='hk.exe' Name='hk.exe' DiskId='1' Source='hk.exe' KeyPath='yes'/> | ||
</Component> | ||
|
||
</Directory> | ||
</Directory> | ||
</Directory> | ||
</Directory> | ||
|
||
<Feature Id='Complete' Level='1'> | ||
<ComponentRef Id='MainExecutable' /> | ||
</Feature> | ||
|
||
</Product> | ||
</Wix> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters