Merge pull request #198 from tud-zih-energy/fix-ssl-linking

SSL Linking
This commit is contained in:
Emiel Bruijntjes 2018-03-12 14:16:28 +01:00 committed by GitHub
commit fe88874d69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View File

@ -8,7 +8,7 @@ add_executable(amqpcpp_boost_example libboostasio.cpp)
add_dependencies(amqpcpp_boost_example amqpcpp)
target_link_libraries(amqpcpp_boost_example amqpcpp boost_system pthread)
target_link_libraries(amqpcpp_boost_example amqpcpp boost_system pthread dl ssl)
###################################
# Libev
@ -18,7 +18,7 @@ add_executable(amqpcpp_libev_example libev.cpp)
add_dependencies(amqpcpp_libev_example amqpcpp)
target_link_libraries(amqpcpp_libev_example amqpcpp ev pthread)
target_link_libraries(amqpcpp_libev_example amqpcpp ev pthread dl ssl)
###################################
@ -29,4 +29,4 @@ add_executable(amqpcpp_libuv_example libuv.cpp)
add_dependencies(amqpcpp_libuv_example amqpcpp)
target_link_libraries(amqpcpp_libuv_example amqpcpp uv pthread)
target_link_libraries(amqpcpp_libuv_example amqpcpp uv pthread dl ssl)

View File

@ -1,7 +1,13 @@
add_sources(
addressinfo.h
includes.h
openssl.cpp
openssl.h
pipe.h
sslconnected.h
sslcontext.h
sslhandshake.h
sslwrapper.h
tcpclosed.h
tcpconnected.h
tcpconnection.cpp