diff options
author | Bob Arnson <bob@firegiant.com> | 2022-01-30 17:02:13 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2022-01-30 17:50:26 -0500 |
commit | bfe5ab76b5ecc1a21078534e6fba90d12cfd3c00 (patch) | |
tree | d05102b0868f2b375d7692c5a47cd0b541d31524 /src/ext/DirectX/wixlib/DirectXExtension.wxs | |
parent | 7ce477c6863c74ef0a50d117d8c28b2f19971b42 (diff) | |
download | wix-bfe5ab76b5ecc1a21078534e6fba90d12cfd3c00.tar.gz wix-bfe5ab76b5ecc1a21078534e6fba90d12cfd3c00.tar.bz2 wix-bfe5ab76b5ecc1a21078534e6fba90d12cfd3c00.zip |
Add platform-specific CAs and compiler extension.
https://github.com/wixtoolset/issues/issues/5933
Diffstat (limited to 'src/ext/DirectX/wixlib/DirectXExtension.wxs')
-rw-r--r-- | src/ext/DirectX/wixlib/DirectXExtension.wxs | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/ext/DirectX/wixlib/DirectXExtension.wxs b/src/ext/DirectX/wixlib/DirectXExtension.wxs deleted file mode 100644 index b83dc98d..00000000 --- a/src/ext/DirectX/wixlib/DirectXExtension.wxs +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
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 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?include caerr.wxi ?> | ||
6 | |||
7 | <!-- DirectX Custom Action DLL Definitions --> | ||
8 | <Fragment> | ||
9 | <Binary Id="DirectXCA" SourceFile="directxca.dll" /> | ||
10 | </Fragment> | ||
11 | |||
12 | <Fragment> | ||
13 | <CustomAction Id="WixQueryDirectXCaps" DllEntry="WixQueryDirectXCaps" Return="ignore" BinaryRef="DirectXCA" /> | ||
14 | |||
15 | <InstallUISequence> | ||
16 | <Custom Action="WixQueryDirectXCaps" Before="LaunchConditions" Overridable="yes" Condition="VersionNT > 400" /> | ||
17 | </InstallUISequence> | ||
18 | |||
19 | <InstallExecuteSequence> | ||
20 | <Custom Action="WixQueryDirectXCaps" Before="LaunchConditions" Overridable="yes" Condition="VersionNT > 400" /> | ||
21 | </InstallExecuteSequence> | ||
22 | </Fragment> | ||
23 | |||
24 | <Fragment> | ||
25 | <Property Id="WIX_DIRECTX_VERTEXSHADERVERSION" Secure="yes" Value="NotSet" /> | ||
26 | <CustomActionRef Id="WixQueryDirectXCaps" /> | ||
27 | </Fragment> | ||
28 | |||
29 | <Fragment> | ||
30 | <Property Id="WIX_DIRECTX_PIXELSHADERVERSION" Secure="yes" Value="NotSet" /> | ||
31 | <CustomActionRef Id="WixQueryDirectXCaps" /> | ||
32 | </Fragment> | ||
33 | </Wix> | ||