Fix #528 : make powershell.exe build with VS 2015

Add legacy_stdio_definitions.lib to the list of linked assemblies
This commit is contained in:
Sergei Vorobev 2016-03-15 13:06:26 -07:00
parent 1920243165
commit 99a55b7a72
2 changed files with 3 additions and 2 deletions

View file

@ -40,7 +40,7 @@ function Start-PSBuild
[switch]$FullCLR,
[Parameter(ParameterSetName='FullCLR')]
[string]$cmakeGenerator = "Visual Studio 12 2013",
[string]$cmakeGenerator = "Visual Studio 14 2015",
[Parameter(ParameterSetName='FullCLR')]
[ValidateSet("Debug",

View file

@ -36,4 +36,5 @@ target_link_libraries(powershell
mscoree.lib
MUILoad.lib
kernel32.lib
msxml6.lib)
msxml6.lib
legacy_stdio_definitions.lib)