1# 2# Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com) 3# 4# Distributed under the Boost Software License, Version 1.0. (See accompanying 5# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6# 7# Official repository: https://github.com/boostorg/beast 8# 9 10GroupSources (include/boost/beast beast) 11GroupSources (example example) 12GroupSources (test/doc "/") 13 14add_executable (tests-doc 15 ${BOOST_BEAST_FILES} 16 Jamfile 17 snippets.hpp 18 snippets.ipp 19 core_snippets.cpp 20 core_1_refresher.cpp 21 core_3_timeouts.cpp 22 core_4_layers.cpp 23 http_10_custom_parser.cpp 24 http_examples.cpp 25 http_snippets.cpp 26 websocket_common.ipp 27 websocket.cpp 28 websocket_1_connecting.cpp 29 websocket_2_handshaking.cpp 30 websocket_3_decorator.cpp 31 websocket_4_messages.cpp 32 websocket_5_control_frames.cpp 33 websocket_6_timeouts.cpp 34 websocket_7_teardown.cpp 35 websocket_8_notes.cpp 36 exemplars.cpp 37) 38 39target_link_libraries(tests-doc 40 lib-asio 41 lib-asio-ssl 42 lib-beast 43 lib-test 44 ) 45 46set_property(TARGET tests-doc PROPERTY FOLDER "tests") 47