Skip to content

Commit

Permalink
fix: x86 msbuild platform is Win32, not x86
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Ferry committed Jun 23, 2022
1 parent c843bb7 commit 49938b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conan/tools/microsoft/msbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def msbuild_verbosity_cmd_line_arg(conanfile):


def msbuild_arch(arch):
return {'x86': 'x86',
return {'x86': 'Win32',
'x86_64': 'x64',
'armv7': 'ARM',
'armv8': 'ARM64'}.get(str(arch))
Expand Down

0 comments on commit 49938b9

Please sign in to comment.