mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
git-subtree-dir: src/websocketpp git-subtree-split: 875d420952d2c47d38de15952a401f00773cdffc
16 lines
237 B
CMake
16 lines
237 B
CMake
|
|
file (GLOB SOURCE_FILES *.cpp)
|
|
file (GLOB HEADER_FILES *.hpp)
|
|
|
|
|
|
if (OPENSSL_FOUND)
|
|
|
|
init_target (echo_server_both)
|
|
|
|
build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES})
|
|
|
|
link_boost ()
|
|
link_openssl()
|
|
final_target ()
|
|
endif()
|