]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/beast/test/beast/websocket/CMakeLists.txt
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / beast / test / beast / websocket / CMakeLists.txt
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
10 GroupSources (include/boost/beast beast)
11 GroupSources (test/extras/include/boost/beast extras)
12 GroupSources (test/beast/websocket "/")
13
14 add_executable (tests-beast-websocket
15 ${BOOST_BEAST_FILES}
16 ${EXTRAS_FILES}
17 Jamfile
18 _detail_decorator.cpp
19 _detail_prng.cpp
20 _detail_impl_base.cpp
21 test.hpp
22 _detail_prng.cpp
23 accept.cpp
24 close.cpp
25 error.cpp
26 frame.cpp
27 handshake.cpp
28 option.cpp
29 ping.cpp
30 read1.cpp
31 read2.cpp
32 read3.cpp
33 rfc6455.cpp
34 ssl.cpp
35 stream.cpp
36 stream_base.cpp
37 stream_explicit.cpp
38 stream_fwd.cpp
39 teardown.cpp
40 timer.cpp
41 utf8_checker.cpp
42 write.cpp
43 )
44
45 target_link_libraries(tests-beast-websocket
46 lib-asio
47 lib-asio-ssl
48 lib-beast
49 lib-test
50 )
51
52 set_property(TARGET tests-beast-websocket PROPERTY FOLDER "tests")