Files
boost_beast/example/http-client-ssl/CMakeLists.txt
T
2017-07-20 08:15:28 -07:00

16 lines
255 B
CMake

# Part of Beast
GroupSources(include/beast beast)
GroupSources(example/http-client-ssl "/")
add_executable (http-client-ssl
${BEAST_INCLUDES}
http_client_ssl.cpp
)
target_link_libraries(http-client-ssl
Beast
${OPENSSL_LIBRARIES}
)