linux-cp: Linux Control Plane Netlink Listener
[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
16 if (NOT LIBNL3_INCLUDE_DIR)
17   message(WARNING "-- libnl3 headers not found - linux-cp plugin disabled")
18   return()
19 endif()
20
21 vpp_plugin_find_library(linux-cp LIBNL3_LIB libnl-3.so)
22 vpp_plugin_find_library(linux-cp LIBNL3_ROUTE_LIB libnl-route-3.so.200)
23
24 include_directories(${LIBNL3_INCLUDE_DIR}/libnl3)
25 include_directories(${LIBMNL_INCLUDE_DIR})
26
27 add_vpp_library(lcp
28   SOURCES
29   lcp_interface.c
30   lcp_interface_sync.c
31   lcp_adj.c
32   lcp.c
33
34   LINK_LIBRARIES
35   ${LIBNL3_LIB}
36   ${LIBNL3_ROUTE_LIB}
37
38   INSTALL_HEADERS
39   lcp_interface.h
40   lcp.h
41 )
42
43 add_vpp_plugin(linux_cp
44   SOURCES
45   lcp_api.c
46   lcp_cli.c
47   lcp_node.c
48
49   API_FILES
50   lcp.api
51
52   LINK_LIBRARIES
53   lcp
54 )
55
56 add_vpp_plugin(linux_cp_unittest
57   SOURCES
58   test/lcp_unittest.c
59
60   LINK_LIBRARIES
61   lcp
62 )
63
64 add_vpp_plugin(linux_nl
65   SOURCES
66   lcp_router.c
67   lcp_nl.c
68
69   LINK_LIBRARIES
70   lcp
71 )