Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add arm64 target to msvc configurations #187

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/configurations.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -42,6 +44,9 @@
'Release_x64': {
'msvs_configuration_platform': 'x64',
},
'Release_arm64': {
'msvs_configuration_platform': 'arm64',
},
},
'msvs_configuration_attributes': {
'OutputDirectory': '$(SolutionDir)$(ConfigurationName)\\$(Platform)',
Expand Down