Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/Tools/Common/setup/commandlinetools.wxs @ 6

Last change on this file since 6 was 6, checked in by anonymous, 17 years ago

=…

File size: 3.1 KB
Line 
1<?xml version='1.0' encoding='windows-1252'?>
2<Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'>
3
4        <Product
5                Name='OGRE Command Line Tools'
6                Id='5940AABD-1573-4cbc-B82F-CA526690FEB5'
7                Language='1033' Codepage='1252'
8                Version='1.4.5' Manufacturer='OGRE Project'>
9
10        <Package Id='????????-????-????-????-????????????' Keywords='Installer'
11                        Description="OGRE Command Line Tools Installer"
12                        Comments='Command Line Tools for OGRE' Manufacturer='OGRE Project'
13                InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
14
15                <Media Id='1' Cabinet='1.cab' EmbedCab='yes' DiskPrompt="CD 1" />
16                <Property Id='DiskPrompt' Value="OGRE Command Line Tools Installer [1]" />
17                <Directory Id='TARGETDIR' Name='SourceDir'>
18                        <!-- VC runtimes -->
19                        <Merge Id='CRT' Language='0' src='C:\Program Files\Common Files\Merge Modules\microsoft_vc80_crt_x86.msm' DiskId='1' />
20                        <Merge Id='CRT Policy' Language='0' src='C:\Program Files\Common Files\Merge Modules\policy_8_0_Microsoft_VC80_CRT_x86.msm' DiskId='1' />
21                        <!-- Exporter files -->
22                        <Directory Id='INSTALLDIR' Name='OgreTool' LongName="OgreCommandLineTools">
23                                <Component Id='OgreMainComp' Guid='9AABF812-D017-48d4-A337-ABF85B544DE0'>
24                                        <File Id='OgreMainDLL' Name='OgreMain.dll' DiskId='1'
25                                                src='..\..\..\Samples\Common\bin\release\OgreMain.dll' Vital='yes' />
26                                </Component>
27                                <Component Id='ExeComp' Guid='2EEEFD09-4BD5-40ec-912C-5F02CC93CA97'>
28                                        <File Id='XmlConverter' Name="XmlConv.exe" LongName='OgreXmlConverter.exe' DiskId='1'
29                                                src='..\bin\release\OgreXMLConverter.exe' Vital='yes' />
30                                        <File Id='MeshUpgrader' Name="MeshUpgr.exe" LongName='OgreMeshUpgrade.exe' DiskId='1'
31                                                src='..\bin\release\OgreMeshUpgrade.exe' Vital='yes' />
32                                        <File Id='MaterialUpgrader' Name="MatUpgr.exe" LongName='OgreMaterialUpgrade.exe' DiskId='1'
33                                                src='..\bin\release\OgreMaterialUpgrade.exe' Vital='yes' />
34                                        <File Id='MeshMagick' Name="MeshMagk.exe" LongName='MeshMagick.exe' DiskId='1'
35                                                src='..\..\..\..\ogreaddons\MeshMagick\bin\release\MeshMagick.exe' Vital='yes' />
36                                </Component>
37                                <Component Id='DocsComp' Guid='5E6F2C1B-1BBD-4465-A929-0B21A58DD306'>
38                                        <File Id='Readme' Name='Readme.txt' DiskId='1'
39                                                src='.\Readme.txt' Vital='yes' />
40                                </Component>
41                        </Directory>
42                        <!-- Start menu -->
43                        <Directory Id="ProgramMenuFolder" Name="PMenu" LongName="Programs">
44                                <Directory Id="OGREProgramMenuDir" Name='OGRE'>
45                                        <Directory Id="ToolsMenuDir" Name="CmdTools" LongName="Command Line Tools"/>
46                                </Directory>
47                        </Directory>
48                       
49
50                </Directory>
51
52                <Feature Id='ToolsFeature' Level='1' ConfigurableDirectory="INSTALLDIR" Title='Tools'
53                        Description='OGRE Command Line Tools'
54                        Absent='disallow' AllowAdvertise='no'>
55                        <ComponentRef Id='ExeComp' />
56                        <ComponentRef Id='OgreMainComp' />
57                        <MergeRef Id='CRT' />
58                        <MergeRef Id='CRT Policy' />
59                </Feature>
60                <Feature Id="DocsFeature" Level='1' ConfigurableDirectory="INSTALLDIR" Title='Documentation'
61                        AllowAdvertise='no'>
62                        <ComponentRef Id="DocsComp" />
63                </Feature>
64                <!-- enable UI -->
65                <UIRef Id="WixUI" />
66        </Product>
67</Wix>
68
69       
70
Note: See TracBrowser for help on using the repository browser.