Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/Tools/MilkshapeExport/setup/milkshapeinstall.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 Milkshape Exporter'
6                Id='CFE34964-1DAB-43b3-9540-07A0B77CC6FB'
7                Language='1033' Codepage='1252'
8                Version='1.4.5' Manufacturer='OGRE Project'>
9
10        <Package Id='????????-????-????-????-????????????' Keywords='Installer'
11                Description="OGREMilkshape Exporter Installer"
12                        Comments='Milkshape Exporter 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 Milkshape Exporter Installer [1]" />
17
18                <Directory Id='TARGETDIR' Name='SourceDir'>
19                        <!-- VC runtimes -->
20                        <Merge Id='CRT' Language='0' src='C:\Program Files\Common Files\Merge Modules\microsoft_vc80_crt_x86.msm' DiskId='1' />
21                        <Merge Id='CRT Policy' Language='0' src='C:\Program Files\Common Files\Merge Modules\policy_8_0_Microsoft_VC80_CRT_x86.msm' DiskId='1' />
22                        <!-- Exporter files -->
23                        <Directory Id='INSTALLDIR' Name='Milkshpe' LongName='Milkshape'>
24                                <Component Id='PluginDLLComp' Guid='30C1A63B-6BB4-4e14-A0B3-F04DABD107BB'>
25                                        <File Id='ExporterDLL' Name='msOGRE.dll' LongName="msOGREExporter.dll" DiskId='1'
26                                                src='..\bin\release\msOGREExporter.dll' Vital='yes' />
27                                </Component>
28                                <Component Id='OgreMainComp' Guid='D6E2E086-01E9-427b-8B4A-59DE2801B5A8'>
29                                        <File Id='OgreMainDLL' Name='OgreMain.dll' DiskId='1'
30                                                src='..\..\..\Samples\Common\bin\release\OgreMain.dll' Vital='yes' />
31                                </Component>
32                        </Directory>
33                        <!-- Docs -->
34                        <Directory Id="ProgramFilesFolder" Name="PFiles">
35                                <Directory Id="OGREFolder" Name="OGRE">
36                                        <Directory Id="OGREMILKSHAPEFOLDER" Name="Milkshpe" LongName="Milkshape Exporter">
37                                                <Component Id="DocsComp" Guid="5FE6ADE1-C902-4d63-93D7-BEE618757055">
38                                                        <File Id="ReadmeFile" Name="Readme.htm" DiskId="1"
39                                                                src="..\ReadMe.html" Vital="no">
40                                                                <Shortcut Id="ReadmeShortcut" Directory="OGREMilkshapeProgMenuDir" Name="Readme"/>
41                                                        </File>                                                         
42                                                </Component>
43                                        </Directory>
44                                </Directory>
45                        </Directory>
46                        <!-- Start menu -->
47                        <Directory Id="ProgramMenuFolder" Name="PMenu" LongName="Programs">
48                                <Directory Id="OGREProgramMenuDir" Name='OGRE'>
49                                        <Directory Id="OGREMilkshapeProgMenuDir" Name="Milkshpe" LongName="Milkshape Exporter"/>
50                                </Directory>
51                        </Directory>
52                       
53
54                </Directory>
55
56                <Feature Id='ExporterFeature' Level='1' ConfigurableDirectory="INSTALLDIR" Title='Exporter'
57                        Description='The main exporter files; THIS MUST BE INSTALLED IN YOUR MILKSHAPE FOLDER.'
58                        Absent='disallow' AllowAdvertise='no'>
59                        <ComponentRef Id='PluginDLLComp' />
60                        <ComponentRef Id='OgreMainComp' />
61                        <MergeRef Id='CRT' />
62                        <MergeRef Id='CRT Policy' />
63                        <Condition Level="0">FILEEXISTS</Condition>
64                </Feature>
65                <Feature Id="DocsFeature" Level='1' ConfigurableDirectory="OGREMILKSHAPEFOLDER" Title='Documentation'
66                        AllowAdvertise='no'>
67                        <ComponentRef Id="DocsComp" />
68                </Feature>
69                <!-- enable UI -->
70                <UIRef Id="WixUI" />
71        </Product>
72</Wix>
73
74       
75
Note: See TracBrowser for help on using the repository browser.