Add MPC_LIB_MODIFIER
[MPC.git] / templates / vs2019platforms.mpt
blob1f4671b1600865b3c3dcc3c428084637a13592ad
1 // -*- MPC -*-
2 //
3 // Any of these platforms can set using value_template platforms=
4 // when generating solutions/projects.
5 //
6 //platforms = Win32 x64 ARM ARM64
8 platforms = Win32 x64 ARM ARM64
9 default_platform = Win32
10 PlatformToolset = v142
11 WindowsTargetPlatformVersion = 10.0
13 Win32 {
14   output_subdir    = I386
17 x64 {
18   output_subdir    = AMD64
19   cpu_defines      = _AMD64_
20   platform_defines = _WIN64
21   TargetMachine    = "0"             // We let VC++ figure it out for us.
22   link_options     = /machine:AMD64
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
33 ARM64 {
34   output_subdir    = ARM64
35   cpu_defines      = _ARM64_
36   platform_defines = _ARM64
37   TargetMachine    = "0"             // We let VC++ figure it out for us.
38   link_options     = /machine:ARM64