mirror of
https://github.com/boostorg/beast.git
synced 2026-04-29 18:23:19 +02:00
17 lines
313 B
CMake
17 lines
313 B
CMake
# Part of Beast
|
|
|
|
GroupSources(include/beast beast)
|
|
GroupSources(example/common common)
|
|
GroupSources(example/http-client-ssl "/")
|
|
|
|
add_executable (http-client-ssl
|
|
${BEAST_INCLUDES}
|
|
${COMMON_INCLUDES}
|
|
http_client_ssl.cpp
|
|
)
|
|
|
|
target_link_libraries(http-client-ssl
|
|
Beast
|
|
${OPENSSL_LIBRARIES}
|
|
)
|