blob: 7d1a4ae122f83db2535c29d6e5b15d530ca40c57 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Fragment>
<Binary Id="FooAlpha" SourceFile="!(bindpath.AlphaBits)foo.dll" />
</Fragment>
<Fragment>
<Binary Id="FooMips" SourceFile="!(bindpath.MipsBits)foo.dll" />
</Fragment>
<Fragment>
<Binary Id="FooPowerPC" SourceFile="!(bindpath.PowerBits)foo.dll" />
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component>
<File Source="test.txt" />
</Component>
<Component Id="Shared.dll" Shared="yes">
<File Name="Shared.dll" Source="test.txt" />
</Component>
</ComponentGroup>
</Fragment>
</Wix>
|