mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-03 14:03:52 +00:00
fix: build on Windows ARM64 (#913)
Regression introduced in commit 3cd730b18b563fdd48cd95dfb0174551aa18c3b3
This commit is contained in:
parent
792d892867
commit
9cd989087d
@ -29,6 +29,10 @@
|
||||
#define _X86_
|
||||
#elif defined(__arm__) || defined(_M_ARM) || defined(_M_ARMT)
|
||||
#define _ARM_
|
||||
#elif defined(__aarch64__) || defined(_M_ARM64)
|
||||
#define _ARM64_
|
||||
#elif defined(_M_ARM64EC)
|
||||
#define _ARM64EC_
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user