aboutsummaryrefslogtreecommitdiff
path: root/src/be/beDecor.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-07-10 18:01:40 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-07-10 22:10:26 +1000
commitaf43f098d7d7cc0fe21c7d7b0fe991763e9cae07 (patch)
treec7c03081845e570482d2e78647637c793fc991c1 /src/be/beDecor.h
parent7f7545f382bb9b885c9bfe894c51e66b443cef25 (diff)
downloadwix-af43f098d7d7cc0fe21c7d7b0fe991763e9cae07.tar.gz
wix-af43f098d7d7cc0fe21c7d7b0fe991763e9cae07.tar.bz2
wix-af43f098d7d7cc0fe21c7d7b0fe991763e9cae07.zip
Add x64 and ARM64 versions of UtilBundleExtension.
Diffstat (limited to 'src/be/beDecor.h')
-rw-r--r--src/be/beDecor.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/be/beDecor.h b/src/be/beDecor.h
new file mode 100644
index 00000000..2c6a8818
--- /dev/null
+++ b/src/be/beDecor.h
@@ -0,0 +1,13 @@
1#pragma once
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#if defined(_M_ARM64)
6#define BUNDLE_EXTENSION_DECORATION(f) L"Wix4" f L"_A64"
7#elif defined(_M_AMD64)
8#define BUNDLE_EXTENSION_DECORATION(f) L"Wix4" f L"_X64"
9#elif defined(_M_ARM)
10#define BUNDLE_EXTENSION_DECORATION(f) L"Wix4" f L"_ARM"
11#else
12#define BUNDLE_EXTENSION_DECORATION(f) L"Wix4" f L"_X86"
13#endif