aboutsummaryrefslogtreecommitdiff
path: root/src/ext/caDecor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/caDecor.h')
-rw-r--r--src/ext/caDecor.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ext/caDecor.h b/src/ext/caDecor.h
index 4a09e075..9484d74c 100644
--- a/src/ext/caDecor.h
+++ b/src/ext/caDecor.h
@@ -31,3 +31,13 @@
31#else 31#else
32#define CUSTOM_ACTION_DECORATION6(f) L"Wix6" f L"_X86" 32#define CUSTOM_ACTION_DECORATION6(f) L"Wix6" f L"_X86"
33#endif 33#endif
34
35#if defined(_M_ARM64)
36#define CUSTOM_ACTION_DECORATION8(f) L"Wix8" f L"_A64"
37#elif defined(_M_AMD64)
38#define CUSTOM_ACTION_DECORATION8(f) L"Wix8" f L"_X64"
39#elif defined(_M_ARM)
40#define CUSTOM_ACTION_DECORATION8(f) L"Wix8" f L"_ARM"
41#else
42#define CUSTOM_ACTION_DECORATION8(f) L"Wix8" f L"_X86"
43#endif