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