hsa: move vcl test apps to hsa
[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_server.c
23   proxy.c
24 )
25
26 ##############################################################################
27 # vpp external hs apps that use the "raw" session layer api
28 ##############################################################################
29 option(VPP_BUILD_HS_SAPI_APPS "Build hs apps that use the session api." ON)
30 if(VPP_BUILD_HS_SAPI_APPS)
31   add_vpp_executable(tcp_echo
32     SOURCES sapi/tcp_echo.c
33     LINK_LIBRARIES vlibmemoryclient svm vppinfra pthread m rt
34     DEPENDS api_headers
35     NO_INSTALL
36   )
37   add_vpp_executable(quic_echo
38     SOURCES sapi/quic_echo.c
39     LINK_LIBRARIES vlibmemoryclient svm vppinfra pthread m rt
40     DEPENDS api_headers
41     NO_INSTALL
42   )
43   add_vpp_executable(udp_echo
44     SOURCES sapi/udp_echo.c
45     LINK_LIBRARIES vlibmemoryclient svm vppinfra pthread m rt
46     DEPENDS api_headers
47     NO_INSTALL
48   )
49 endif(VPP_BUILD_HS_SAPI_APPS)
50
51 ##############################################################################
52 # vcl tests
53 ##############################################################################
54 option(VPP_BUILD_VCL_TESTS "Build vcl tests." ON)
55 if(VPP_BUILD_VCL_TESTS)
56   foreach(test
57     vcl_test_server
58     vcl_test_client
59     sock_test_server
60     sock_test_client
61   )
62     add_vpp_executable(${test}
63       SOURCES "vcl/${test}.c"
64       LINK_LIBRARIES vppcom pthread
65       NO_INSTALL
66     )
67   endforeach()
68 endif(VPP_BUILD_VCL_TESTS)