We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9397fa2 + 6748c06 commit 5d680f2Copy full SHA for 5d680f2
1 file changed
templates/vs2019platforms.mpt
@@ -3,9 +3,9 @@
3
// Any of these platforms can set using value_template platforms=
4
// when generating solutions/projects.
5
//
6
-//platforms = Win32 x64
+//platforms = Win32 x64 ARM ARM64
7
8
-platforms = Win32 x64
+platforms = Win32 x64 ARM ARM64
9
default_platform = Win32
10
PlatformToolset = v142
11
WindowsTargetPlatformVersion = 10.0
@@ -22,3 +22,18 @@ x64 {
22
link_options = /machine:AMD64
23
}
24
25
+ARM {
26
+ output_subdir = ARM
27
+ cpu_defines = _ARM_
28
+ platform_defines = _ARM
29
+ TargetMachine = "0" // We let VC++ figure it out for us.
30
+ link_options = /machine:ARM
31
+}
32
+
33
+ARM64 {
34
+ output_subdir = ARM64
35
+ cpu_defines = _ARM64_
36
+ platform_defines = _ARM64
37
38
+ link_options = /machine:ARM64
39
0 commit comments