linux-cp: Linux Interface Mirroring for Control Plane Integration
[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 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_adj.c
31   lcp.c
32
33   LINK_LIBRARIES
34   ${LIBNL3_LIB}
35   ${LIBNL3_ROUTE_LIB}
36
37   INSTALL_HEADERS
38   lcp_interface.h
39   lcp.h
40 )
41
42 add_vpp_plugin(linux_cp
43   SOURCES
44   lcp_api.c
45   lcp_cli.c
46   lcp_node.c
47
48   API_FILES
49   lcp.api
50
51   LINK_LIBRARIES
52   lcp
53 )
54
55 add_vpp_plugin(linux_cp_unittest
56   SOURCES
57   test/lcp_unittest.c
58
59   LINK_LIBRARIES
60   lcp
61 )