summaryrefslogtreecommitdiff
path: root/src/gf.wxs.in
diff options
context:
space:
mode:
authorbringert <unknown>2005-05-19 14:19:13 +0000
committerbringert <unknown>2005-05-19 14:19:13 +0000
commitc2ac91bc1695d84b4eeb35c467f4c9ac0bea8327 (patch)
tree1f23c72b840bad553e9cd7e9599d09f3eea4b05e /src/gf.wxs.in
parentfb90359e3273963985799595f00937169bc49fb9 (diff)
Can now build Windows MSI packages using WiX.
Diffstat (limited to 'src/gf.wxs.in')
-rw-r--r--src/gf.wxs.in41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/gf.wxs.in b/src/gf.wxs.in
new file mode 100644
index 000000000..941a7f2cb
--- /dev/null
+++ b/src/gf.wxs.in
@@ -0,0 +1,41 @@
+<?xml version="1.0"?>
+<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">
+ <Product Id="4717AF5D-52AC-4D13-85E6-D87278CE9BBC" UpgradeCode="0BB7BB08-1A79-4981-A03F-32B401B01010" Name="Grammatical Framework, version @PACKAGE_VERSION@"
+Language="1033"
+Version="2.2" Manufacturer="The GF Developers">
+ <Package Id="????????-????-????-????-????????????"
+Description="Grammatical Framework, version @PACKAGE_VERSION@" Comments="This package contains the Grammatical Framework system, version @PACKAGE_VERSION@."
+InstallerVersion="200" Compressed="yes" />
+
+ <Media Id="1" Cabinet="gf.cab" EmbedCab="yes" />
+
+ <Directory Id="TARGETDIR" Name="SourceDir">
+ <Directory Id="ProgramFilesFolder">
+ <Directory Id="INSTALLLOCATION" Name="GF-@PACKAGE_VERSION@">
+ <Directory Id="GFBinFolder" Name="bin">
+
+ <Component Id="GFBinary" Guid="E2A44A6C-0252-4346-85AE-BC6A16BFB0FC">
+ <File Id="GF" Name="gf.exe"
+ LongName="gf.exe" DiskId="1" src="../bin/gf.exe"/>
+ <Shortcut Id="GFStartMenuLink" Directory="ProgramMenuDir"
+ Name="GF-@PACKAGE_VERSION@" Advertise="yes"
+ WorkingDirectory='INSTALLDIR'
+ />
+ </Component>
+
+ </Directory>
+ </Directory>
+ </Directory>
+
+ <Directory Id="ProgramMenuFolder" Name="PMenu" LongName="Programs">
+ <Directory Id="ProgramMenuDir" Name='GF-@PACKAGE_VERSION@' />
+ </Directory>
+
+ </Directory>
+
+ <Feature Id="ProductFeature" Title="Feature Title" Level="1">
+ <ComponentRef Id="GFBinary" />
+ </Feature>
+
+ </Product>
+</Wix> \ No newline at end of file