diff options
Diffstat (limited to 'src/wixlib/caSuffix.wxi')
-rw-r--r-- | src/wixlib/caSuffix.wxi | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/wixlib/caSuffix.wxi b/src/wixlib/caSuffix.wxi index a56a2393..18436269 100644 --- a/src/wixlib/caSuffix.wxi +++ b/src/wixlib/caSuffix.wxi | |||
@@ -1,28 +1,27 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 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 | <!-- 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 | 2 | ||
4 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 3 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
5 | <?ifndef platform ?> | 4 | <?ifndef platform ?> |
6 | <?error Required value "platform" not defined in include caSuffix.wxi ?> | 5 | <?error Required value "platform" not defined in include caSuffix.wxi ?> |
7 | <?endif ?> | 6 | <?endif?> |
8 | 7 | ||
9 | <?ifdef Suffix ?> | 8 | <?ifdef Suffix ?> |
10 | <?undef Suffix ?> | 9 | <?undef Suffix ?> |
11 | <?undef DeferredSuffix ?> | 10 | <?undef DeferredSuffix ?> |
12 | <?endif ?> | 11 | <?endif?> |
13 | 12 | ||
14 | <?if $(var.platform)="x86" ?> | 13 | <?if $(var.platform)="x86" ?> |
15 | <?define Suffix="" ?> | 14 | <?define Suffix="" ?> |
16 | <?define DeferredSuffix="" ?> | 15 | <?define DeferredSuffix="" ?> |
17 | <?endif ?> | 16 | <?endif?> |
18 | 17 | ||
19 | <?if $(var.platform)="x64" ?> | 18 | <?if $(var.platform)="x64" ?> |
20 | <?define Suffix="_x64" ?> | 19 | <?define Suffix="_x64" ?> |
21 | <?define DeferredSuffix="_64" ?> | 20 | <?define DeferredSuffix="_64" ?> |
22 | <?endif ?> | 21 | <?endif?> |
23 | 22 | ||
24 | <?if $(var.platform)="arm" ?> | 23 | <?if $(var.platform)="arm" ?> |
25 | <?define Suffix="_ARM" ?> | 24 | <?define Suffix="_ARM" ?> |
26 | <?define DeferredSuffix="_ARM" ?> | 25 | <?define DeferredSuffix="_ARM" ?> |
27 | <?endif ?> | 26 | <?endif?> |
28 | </Include> | 27 | </Include> |