From a111ad87f5950363450140a39f4e6146a0f48e1e Mon Sep 17 00:00:00 2001 From: Niyas Sait Date: Wed, 10 Nov 2021 14:50:48 +0000 Subject: [PATCH 1/2] add arm64 target to msvc configurations --- src/configurations.gypi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/configurations.gypi b/src/configurations.gypi index e990a603..91ce570c 100644 --- a/src/configurations.gypi +++ b/src/configurations.gypi @@ -42,6 +42,9 @@ 'Release_x64': { 'msvs_configuration_platform': 'x64', }, + 'Release_arm64': { + 'msvs_configuration_platform': 'arm64', + }, }, 'msvs_configuration_attributes': { 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)\\$(Platform)', From b8d01337424efe2c455c231940901a0b8360de33 Mon Sep 17 00:00:00 2001 From: Niyas Sait Date: Wed, 10 Nov 2021 14:53:40 +0000 Subject: [PATCH 2/2] add notes to documentation --- src/configurations.gypi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/configurations.gypi b/src/configurations.gypi index 91ce570c..ff42699a 100644 --- a/src/configurations.gypi +++ b/src/configurations.gypi @@ -8,11 +8,13 @@ # # C:\...\winpty\src>msbuild winpty.sln /p:Platform=Win32 # C:\...\winpty\src>msbuild winpty.sln /p:Platform=x64 +# C:\...\winpty\src>msbuild winpty.sln /p:Platform=arm64 # # The output is placed in: # # C:\...\winpty\src\Release\Win32 # C:\...\winpty\src\Release\x64 +# C:\...\winpty\src\Release\arm64 # # Windows XP note: By default, the project files will use the default "toolset" # for the given MSVC version. For MSVC 2013 and MSVC 2015, the default toolset