我正在尝试构建同时支持 zlib、ssh2 和 openssl 的 curl dll 库
但是,当我指定release-dll-ssl-dll-ssh2-dll-zlib-dll
我得到这个列表:
Usage: nmake /f makefile.vc9 CFG=<config> <target>
where <config> is one of:
release - release static library
release-ssl - release static library with ssl
release-zlib - release static library with zlib
release-ssl-zlib - release static library with ssl and zlib
release-ssl-ssh2-zlib - release static library with ssl, ssh2 and zlib
release-ssl-dll - release static library with dynamic ssl
release-zlib-dll - release static library with dynamic zlib
release-ssl-dll-zlib-dll - release static library with dynamic ssl and dynamic zlib
release-dll - release dynamic library
release-dll-ssl-dll - release dynamic library with dynamic ssl
release-dll-zlib-dll - release dynamic library with dynamic zlib
release-dll-ssl-dll-zlib-dll - release dynamic library with dynamic ssl and dynamic zlib
debug - debug static library
debug-ssl - debug static library with ssl
debug-zlib - debug static library with zlib
debug-ssl-zlib - debug static library with ssl and zlib
debug-ssl-ssh2-zlib - debug static library with ssl, ssh2 and zlib
debug-ssl-dll - debug static library with dynamic ssl
debug-zlib-dll - debug static library with dynamic zlib
debug-ssl-dll-zlib-dll - debug static library with dynamic ssl and dynamic zlib
debug-dll - debug dynamic library
debug-dll-ssl-dll - debug dynamic library with dynamic ssl
debug-dll-zlib-dll - debug dynamic library with dynamic zlib1
debug-dll-ssl-dll-zlib-dll - debug dynamic library with dynamic ssl and dynamic zlib
<target> can be left blank in which case all is assumed
Makefile.vc9(476) : fatal error U1050: please choose a valid configuration "release-dll-ssl-dll-zlib-dll-ssh2-dll"
构建release-ssl-dll-zlib-dll
工作正常,但我也需要 sftp。
为什么这个选项不存在?
有没有解决的办法?