openssh-portable/contrib/win32/openssh
Manoj Ampalam 8124c3a40c cranked up build version 2017-01-29 23:48:18 -08:00
..
AnalyzeCodeDiff.ps1
OpenSSL-1.0.2d_build.cmd
README.txt
VSWithBuildTools.xml
Win32-OpenSSH.sln Cleaned up unittests (https://github.com/PowerShell/Win32-OpenSSH/issues/477) 2017-01-27 14:11:27 -08:00
appveyor.psm1 Improvements to CI build and validation output 2017-01-27 10:47:20 -08:00
build.psm1 Improvements to CI build and validation output 2017-01-27 10:47:20 -08:00
config.h.vs Cleaned up unittests (https://github.com/PowerShell/Win32-OpenSSH/issues/477) 2017-01-27 14:11:27 -08:00
config.ps1 Got rid of w32posix.h and defs.h (https://github.com/PowerShell/Win32-OpenSSH/issues/498) 2017-01-25 14:43:55 -08:00
config.vcxproj Added provision to intercept crt header inclusion (https://github.com/PowerShell/Win32-OpenSSH/issues/490) 2017-01-21 20:14:08 -08:00
config.vcxproj.filters
install-sshd.ps1 Added credits to install-sshd.ps1 2016-12-20 13:50:02 -08:00
install-sshlsa.ps1
keygen.vcxproj
keygen.vcxproj.filters
libssh.vcxproj Fixed openssl=no build issues (#38) 2016-12-27 13:47:09 -08:00
libssh.vcxproj.filters Added provision to intercept crt header inclusion (https://github.com/PowerShell/Win32-OpenSSH/issues/490) 2017-01-21 20:14:08 -08:00
openbsd_compat.vcxproj
openbsd_compat.vcxproj.filters
openssh_build.cmd
paths.targets
resource.h
scp.vcxproj
scp.vcxproj.filters
sftp-server.vcxproj
sftp-server.vcxproj.filters
sftp.vcxproj
sftp.vcxproj.filters
ssh-add.vcxproj
ssh-add.vcxproj.filters
ssh-agent.vcxproj
ssh-lsa.def
ssh-lsa.vcxproj
ssh-lsa.vcxproj.filters
ssh-shellhost.vcxproj
ssh.vcxproj
ssh.vcxproj.filters
sshd.vcxproj
sshd.vcxproj.filters
sshd_config Improvements to CI build and validation output 2017-01-27 10:47:20 -08:00
targetos.manifest
uninstall-sshd.ps1
uninstall-sshlsa.ps1
unittest-bitmap.vcxproj
unittest-hostkeys.vcxproj
unittest-kex.vcxproj
unittest-match.vcxproj Cleaned up unittests (https://github.com/PowerShell/Win32-OpenSSH/issues/477) 2017-01-27 14:11:27 -08:00
unittest-sshbuf.vcxproj
unittest-sshkey.vcxproj
unittest-utf8.vcxproj
unittest-win32compat.vcxproj
version.rc cranked up build version 2017-01-29 23:48:18 -08:00
win32iocompat.vcxproj Bug fixes (#58) 2017-01-28 11:52:02 -08:00
win32iocompat.vcxproj.filters Bug fixes (#58) 2017-01-28 11:52:02 -08:00

README.txt

Custom paths for the visual studio projects are defined in paths.targets.  

All projects import this targets file, and it should be in the same directory as the project.

The custom paths are:

OpenSSH-Src-Path            =  The directory path of the OpenSSH root source directory (with trailing slash)
OpenSSH-Bin-Path            =  The directory path of the location to which binaries are placed.  This is the output of the binary projects
OpenSSH-Lib-Path            =  The directory path of the location to which libraries are placed.  This is the output of the libary projects
OpenSSL-Win32-Release-Path  =  The directory path of OpenSSL statically linked compiled for Win32-Release. This path is used for
                               include and library paths and for Win32-Release. 
OpenSSL-Win32-Debug-Path    =  The directory path of OpenSSL statically linked compiled for Win32-Debug. This path is used for
                               include and library paths and for Win32-Debug.  
OpenSSL-x64-Release-Path    =  The directory path of OpenSSL statically linked compiled for x64-Release. This path is used for
                               include and library paths and for x64-Release. 
OpenSSL-x64-Debug-Path      =  The directory path of OpenSSL statically linked compiled for x64-Debug. This path is used for
                               include and library paths and for x64-Debug. 

 

The Release/Debug OpenSSL directories output is the standard 'install' output of OpenSSL compiled under Visual Studio 2015 using static c-runtimes.