summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-10-06 22:02:37 +0200
committerGitHub <noreply@github.com>2019-10-06 22:02:37 +0200
commit5d680f21e8fa8e65381e633fbb43e85909c72c79 (patch)
tree3a2c108c0f77b3c5860352d7dce957bb8f94ce39
parent9397fa2f3dec229eeb6f9a4e4c479725f36f2d2f (diff)
parent6748c065c09ba0c81032985cd6da6b245493fa9f (diff)
downloadMPC-ACE+TAO-6_5_7.tar.gz
Merge pull request #89 from ORDIS-Co-Ltd/masterACE+TAO-6_5_7
added platform definitions for ARM and ARM64
-rw-r--r--templates/vs2019platforms.mpt19
1 files changed, 17 insertions, 2 deletions
diff --git a/templates/vs2019platforms.mpt b/templates/vs2019platforms.mpt
index 4f5dbfa8..1f4671b1 100644
--- a/templates/vs2019platforms.mpt
+++ b/templates/vs2019platforms.mpt
@@ -3,9 +3,9 @@
// Any of these platforms can set using value_template platforms=
// when generating solutions/projects.
//
-//platforms = Win32 x64
+//platforms = Win32 x64 ARM ARM64
-platforms = Win32 x64
+platforms = Win32 x64 ARM ARM64
default_platform = Win32
PlatformToolset = v142
WindowsTargetPlatformVersion = 10.0
@@ -22,3 +22,18 @@ x64 {
link_options = /machine:AMD64
}
+ARM {
+ output_subdir = ARM
+ cpu_defines = _ARM_
+ platform_defines = _ARM
+ TargetMachine = "0" // We let VC++ figure it out for us.
+ link_options = /machine:ARM
+}
+
+ARM64 {
+ output_subdir = ARM64
+ cpu_defines = _ARM64_
+ platform_defines = _ARM64
+ TargetMachine = "0" // We let VC++ figure it out for us.
+ link_options = /machine:ARM64
+} \ No newline at end of file