msbuild cmd script to build all openssh win32 binaries using VS2015 solution

Builds all x64 64bit and x86 32 bit openssh binaries Release and Debug
versions from the single Win32-OpenSSH.sln file.
1. Open a MSbuild cmd prompt for Visual Studio 2015
2. cd Win32-OpenSSH\contrib\win32\openssh directory.
3. openssh_build_cmd
This commit is contained in:
quamrulmina 2015-11-09 18:39:32 -06:00
parent d7986de876
commit faf153b7cf

View File

@ -0,0 +1,4 @@
msbuild /property:Configuration=Release /property:Platform=x64 Win32-OpenSSH.sln
msbuild /property:Configuration=Release /property:Platform=x86 Win32-OpenSSH.sln
msbuild /property:Configuration=Debug /property:Platform=x64 Win32-OpenSSH.sln
msbuild /property:Configuration=Debug /property:Platform=x86 Win32-OpenSSH.sln