2012-11-11 11:28:44 +01:00
|
|
|
set(LIBNAME "PocoNetSSL")
|
|
|
|
|
2014-07-09 15:55:58 +02:00
|
|
|
set(SRCS
|
|
|
|
src/AcceptCertificateHandler.cpp
|
|
|
|
src/CertificateHandlerFactory.cpp
|
|
|
|
src/CertificateHandlerFactoryMgr.cpp
|
|
|
|
src/ConsoleCertificateHandler.cpp
|
|
|
|
src/Context.cpp
|
|
|
|
src/HTTPSClientSession.cpp
|
|
|
|
src/HTTPSSessionInstantiator.cpp
|
|
|
|
src/HTTPSStreamFactory.cpp
|
|
|
|
src/InvalidCertificateHandler.cpp
|
|
|
|
src/KeyConsoleHandler.cpp
|
|
|
|
src/KeyFileHandler.cpp
|
|
|
|
src/PrivateKeyFactory.cpp
|
|
|
|
src/PrivateKeyFactoryMgr.cpp
|
|
|
|
src/PrivateKeyPassphraseHandler.cpp
|
|
|
|
src/RejectCertificateHandler.cpp
|
|
|
|
src/SecureServerSocket.cpp
|
|
|
|
src/SecureServerSocketImpl.cpp
|
|
|
|
src/SecureSMTPClientSession.cpp
|
|
|
|
src/SecureSocketImpl.cpp
|
|
|
|
src/SecureStreamSocket.cpp
|
|
|
|
src/SecureStreamSocketImpl.cpp
|
|
|
|
src/Session.cpp
|
|
|
|
src/SSLException.cpp
|
|
|
|
src/SSLManager.cpp
|
|
|
|
src/Utility.cpp
|
|
|
|
src/VerificationErrorArgs.cpp
|
|
|
|
src/X509Certificate.cpp
|
|
|
|
)
|
|
|
|
|
2012-11-11 11:28:44 +01:00
|
|
|
include_directories( ${OPENSSL_INCLUDE_DIR} )
|
|
|
|
|
|
|
|
if (NOT POCO_STATIC)
|
|
|
|
add_definitions(-DNetSSL_EXPORTS)
|
|
|
|
endif (NOT POCO_STATIC)
|
|
|
|
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
2014-07-09 15:55:58 +02:00
|
|
|
set_target_properties( ${LIBNAME}
|
2012-11-11 11:28:44 +01:00
|
|
|
PROPERTIES
|
|
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
2012-12-08 18:54:38 +01:00
|
|
|
target_link_libraries( ${LIBNAME} PocoCrypto PocoNet PocoUtil PocoFoundation ${OPENSSL_SSL_LIBRARY} ${OPENSSL_CRYPTO_LIBRARY} )
|
2012-11-11 11:28:44 +01:00
|
|
|
|
|
|
|
install(
|
|
|
|
DIRECTORY include/Poco
|
|
|
|
DESTINATION include
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
2014-07-09 15:55:58 +02:00
|
|
|
|
2012-11-11 11:28:44 +01:00
|
|
|
install(
|
|
|
|
TARGETS ${LIBNAME}
|
2014-05-21 23:16:34 +02:00
|
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX}
|
|
|
|
RUNTIME DESTINATION bin
|
2012-11-11 11:28:44 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
if (ENABLE_TESTS)
|
|
|
|
add_subdirectory(samples)
|
|
|
|
add_subdirectory(testsuite)
|
|
|
|
endif ()
|
|
|
|
|