Add MSW manifests for ARM and ARM64 platforms

Closes https://github.com/wxWidgets/wxWidgets/pull/1657
This commit is contained in:
GH Cao
2019-11-21 00:55:02 +08:00
committed by Vadim Zeitlin
parent 2bc6e50ede
commit c0c2260944
5 changed files with 58 additions and 2 deletions

View File

@@ -23,11 +23,11 @@ EMIT(#define wxUSE_RC_MANIFEST 1)
EMIT(#define WX_CPU_AMD64)
#endif
#ifdef _M_ARM
#if defined _M_ARM || defined __arm__
EMIT(#define WX_CPU_ARM)
#endif
#ifdef _M_ARM64
#if defined _M_ARM64 || defined __aarch64__
EMIT(#define WX_CPU_ARM64)
#endif