diff options
Diffstat (limited to 'src/ext/DirectX/wixlib/DirectXExtension_Platform.wxi')
-rw-r--r-- | src/ext/DirectX/wixlib/DirectXExtension_Platform.wxi | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ext/DirectX/wixlib/DirectXExtension_Platform.wxi b/src/ext/DirectX/wixlib/DirectXExtension_Platform.wxi new file mode 100644 index 00000000..317e75d4 --- /dev/null +++ b/src/ext/DirectX/wixlib/DirectXExtension_Platform.wxi | |||
@@ -0,0 +1,23 @@ | |||
1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
2 | |||
3 | |||
4 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?include ..\..\caDecor.wxi ?> | ||
6 | |||
7 | <!-- DirectX Custom Action DLL Definitions --> | ||
8 | <Fragment> | ||
9 | <Binary Id="$(var.Prefix)DXCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))dxca.dll" /> | ||
10 | </Fragment> | ||
11 | |||
12 | <Fragment> | ||
13 | <CustomAction Id="$(var.Prefix)QueryDirectXCaps$(var.Suffix)" DllEntry="WixQueryDirectXCaps" Return="ignore" BinaryRef="$(var.Prefix)DXCA$(var.Suffix)" /> | ||
14 | |||
15 | <InstallUISequence> | ||
16 | <Custom Action="$(var.Prefix)QueryDirectXCaps$(var.Suffix)" Before="LaunchConditions" Overridable="yes" /> | ||
17 | </InstallUISequence> | ||
18 | |||
19 | <InstallExecuteSequence> | ||
20 | <Custom Action="$(var.Prefix)QueryDirectXCaps$(var.Suffix)" Before="LaunchConditions" Overridable="yes" /> | ||
21 | </InstallExecuteSequence> | ||
22 | </Fragment> | ||
23 | </Include> | ||