http: support client connect
[vpp.git] / src / plugins / hs_apps / CMakeLists.txt
1 # Copyright (c) 2019 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 ##############################################################################
15 # vpp builtin hs apps
16 ##############################################################################
17 add_vpp_plugin(hs_apps
18   SOURCES
19   echo_client.c
20   echo_server.c
21   hs_apps.c
22   http_cli.c
23   http_client_cli.c
24   http_tps.c
25   proxy.c
26 )
27
28 ##############################################################################
29 # vpp external hs apps that use the "raw" session layer api
30 ##############################################################################
31 option(VPP_BUILD_HS_SAPI_APPS "Build hs apps that use the session api." ON)
32 if(VPP_BUILD_HS_SAPI_APPS)
33   add_vpp_executable(vpp_echo
34     SOURCES
35     sapi/vpp_echo.c
36     sapi/vpp_echo_common.c
37     sapi/vpp_echo_bapi.c
38     sapi/vpp_echo_sapi.c
39     sapi/vpp_echo_proto_quic.c
40     sapi/vpp_echo_proto_tcp.c
41     sapi/vpp_echo_proto_udp.c
42     LINK_LIBRARIES vlibmemoryclient svm vppinfra pthread m rt
43     DEPENDS api_headers
44   )
45 endif(VPP_BUILD_HS_SAPI_APPS)
46
47 ##############################################################################
48 # vcl tests
49 ##############################################################################
50 option(VPP_BUILD_VCL_TESTS "Build vcl tests." ON)
51 if(VPP_BUILD_VCL_TESTS)
52   foreach(test
53     sock_test_server
54     sock_test_client
55   )
56     add_vpp_executable(${test}
57       SOURCES "vcl/${test}.c"
58       LINK_LIBRARIES vppcom pthread
59       NO_INSTALL
60     )
61   endforeach()
62
63   foreach(test
64     vcl_test_server
65     vcl_test_client
66   )
67     add_vpp_executable(${test}
68       SOURCES
69       "vcl/${test}.c"
70       vcl/vcl_test_protos.c
71       LINK_LIBRARIES vppcom pthread
72       NO_INSTALL
73     )
74   endforeach()
75 endif(VPP_BUILD_VCL_TESTS)