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

@@ -31,6 +31,14 @@
#ifndef WX_CPU_IA64
#define WX_CPU_IA64
#endif
#elif defined __arm__
#ifndef WX_CPU_ARM
#define WX_CPU_ARM
#endif
#elif defined __aarch64__
#ifndef WX_CPU_ARM64
#define WX_CPU_ARM64
#endif
#endif
#endif