diff options
Diffstat (limited to 'src/ext/caDecor.h')
-rw-r--r-- | src/ext/caDecor.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ext/caDecor.h b/src/ext/caDecor.h index 060032cf..4a09e075 100644 --- a/src/ext/caDecor.h +++ b/src/ext/caDecor.h | |||
@@ -21,3 +21,13 @@ | |||
21 | #else | 21 | #else |
22 | #define CUSTOM_ACTION_DECORATION5(f) L"Wix5" f L"_X86" | 22 | #define CUSTOM_ACTION_DECORATION5(f) L"Wix5" f L"_X86" |
23 | #endif | 23 | #endif |
24 | |||
25 | #if defined(_M_ARM64) | ||
26 | #define CUSTOM_ACTION_DECORATION6(f) L"Wix6" f L"_A64" | ||
27 | #elif defined(_M_AMD64) | ||
28 | #define CUSTOM_ACTION_DECORATION6(f) L"Wix6" f L"_X64" | ||
29 | #elif defined(_M_ARM) | ||
30 | #define CUSTOM_ACTION_DECORATION6(f) L"Wix6" f L"_ARM" | ||
31 | #else | ||
32 | #define CUSTOM_ACTION_DECORATION6(f) L"Wix6" f L"_X86" | ||
33 | #endif | ||