aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/caDecor.wxi
diff options
context:
space:
mode:
authorBob Arnson <bob@joyofsetup.com>2020-03-09 13:47:57 -0400
committerBob Arnson <bob@firegiant.com>2020-03-09 13:52:22 -0400
commit1e63f31a2b8caf3a81f619d0786efddb0173ab05 (patch)
treef44207ee186aa0ba13784ecc766c82de24404a90 /src/wixlib/caDecor.wxi
parent7db9d55d7723fd5c451ded7fbbfde0a4b220b8dd (diff)
downloadwix-1e63f31a2b8caf3a81f619d0786efddb0173ab05.tar.gz
wix-1e63f31a2b8caf3a81f619d0786efddb0173ab05.tar.bz2
wix-1e63f31a2b8caf3a81f619d0786efddb0173ab05.zip
Version extension ids.
Partial fix for wixtoolset/issues#5933.
Diffstat (limited to 'src/wixlib/caDecor.wxi')
-rw-r--r--src/wixlib/caDecor.wxi40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/wixlib/caDecor.wxi b/src/wixlib/caDecor.wxi
new file mode 100644
index 00000000..1d00df8f
--- /dev/null
+++ b/src/wixlib/caDecor.wxi
@@ -0,0 +1,40 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- 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. -->
3
4
5<Include xmlns="http://schemas.microsoft.com/wix/2006/wi">
6 <?ifdef Prefix ?>
7 <?undef Prefix ?>
8 <?endif ?>
9
10 <?define Prefix="Wix4" ?>
11
12 <?ifndef platform ?>
13 <?define platform="x86" ?>
14 <?endif ?>
15
16 <?if $(var.platform)="" ?>
17 <?undef platform ?>
18 <?define platform="x86" ?>
19 <?endif ?>
20
21 <?ifdef Suffix ?>
22 <?undef Suffix ?>
23 <?endif ?>
24
25 <?if $(var.platform)~="x86" ?>
26 <?define Suffix="_X86" ?>
27 <?endif ?>
28
29 <?if $(var.platform)~="x64" ?>
30 <?define Suffix="_X64" ?>
31 <?endif ?>
32
33 <?if $(var.platform)~="arm" ?>
34 <?define Suffix="_A32" ?>
35 <?endif ?>
36
37 <?if $(var.platform)~="arm64" ?>
38 <?define Suffix="_A64" ?>
39 <?endif ?>
40</Include>