forked from boostorg/beast
16 lines
255 B
CMake
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}
|
|
)
|