hs-test: fixed timed out tests passing in the CI
[vpp.git] / src / plugins / linux-cp / CMakeLists.txt
1 # Copyright (c) 2020 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 vpp_find_path(LIBNL3_INCLUDE_DIR NAMES libnl3/netlink/route/link/vlan.h)
15 vpp_find_path(LIBMNL_INCLUDE_DIR NAMES libmnl/libmnl.h)
16
17 if (NOT LIBNL3_INCLUDE_DIR)
18   message(WARNING "-- libnl3 headers not found - linux-cp plugin disabled")
19   return()
20 endif()
21
22 if (NOT LIBMNL_INCLUDE_DIR)
23   message(WARNING "-- libmnl headers not found - linux-cp plugin disabled")
24   return()
25 endif()
26
27 vpp_plugin_find_library(linux-cp LIBNL3_LIB libnl-3.so)
28 vpp_plugin_find_library(linux-cp LIBNL3_ROUTE_LIB libnl-route-3.so.200)
29
30 include_directories(${LIBNL3_INCLUDE_DIR}/libnl3)
31 include_directories(${LIBMNL_INCLUDE_DIR})
32
33 add_vpp_library(lcp
34   SOURCES
35   lcp_interface.c
36   lcp_interface_sync.c
37   lcp_mpls_sync.c
38   lcp_adj.c
39   lcp.c
40
41   LINK_LIBRARIES
42   ${LIBNL3_LIB}
43   ${LIBNL3_ROUTE_LIB}
44
45   INSTALL_HEADERS
46   lcp_interface.h
47   lcp.h
48 )
49
50 add_vpp_plugin(linux_cp
51   SOURCES
52   lcp_api.c
53   lcp_cli.c
54   lcp_node.c
55
56   API_FILES
57   lcp.api
58
59   LINK_LIBRARIES
60   lcp
61 )
62
63 add_vpp_plugin(linux_cp_unittest
64   SOURCES
65   test/lcp_unittest.c
66
67   LINK_LIBRARIES
68   lcp
69 )
70
71 add_vpp_plugin(linux_nl
72   SOURCES
73   lcp_router.c
74   lcp_nl.c
75
76   LINK_LIBRARIES
77   lcp
78 )