]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/beast/test/beast/http/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / beast / test / beast / http / 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/http "/")
13
14 add_executable (tests-beast-http
15 ${BOOST_BEAST_FILES}
16 ${EXTRAS_FILES}
17 Jamfile
18 message_fuzz.hpp
19 test_parser.hpp
20 basic_dynamic_body.cpp
21 basic_file_body.cpp
22 basic_parser.cpp
23 buffer_body.cpp
24 chunk_encode.cpp
25 dynamic_body.cpp
26 empty_body.cpp
27 error.cpp
28 field.cpp
29 field_compiles.cpp
30 fields.cpp
31 file_body.cpp
32 message.cpp
33 parser.cpp
34 read.cpp
35 rfc7230.cpp
36 serializer.cpp
37 span_body.cpp
38 status.cpp
39 string_body.cpp
40 type_traits.cpp
41 vector_body.cpp
42 verb.cpp
43 write.cpp
44 )
45
46 target_link_libraries(tests-beast-http
47 lib-asio
48 lib-asio-ssl
49 lib-beast
50 lib-test
51 )
52
53 set_property(TARGET tests-beast-http PROPERTY FOLDER "tests")
54
55 #
56 # Individual tests
57 #
58 build_individual_tests(tests-beast-http LIBS lib-asio lib-asio-ssl lib-beast lib-test)