ethernet: check destination mac for L3 in ethernet-input node
[vpp.git] / src / vlibmemory / CMakeLists.txt
1 # Copyright (c) 2018 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 add_vpp_library (vlibmemory
15   SOURCES
16   memory_api.c
17   socket_api.c
18   memclnt_api.c
19   vlib_api_cli.c
20   vlib_api.c
21
22   INSTALL_HEADERS
23   vl_memory_msg_enum.h
24   vl_memory_api_h.h
25   socket_client.h
26   memory_api.h
27   api.h
28   memory_client.h
29   socket_api.h
30
31   API_FILES
32   memclnt.api
33   vlib.api
34
35   LINK_LIBRARIES vppinfra svm vlib vlibapi
36 )
37 add_dependencies(vlibmemory vlibmemory_api_headers)
38
39 add_vpp_library (vlibmemoryclient
40   SOURCES
41   memory_client.c
42   socket_client.c
43
44   LINK_LIBRARIES vppinfra svm vlibapi
45 )
46 add_dependencies(vlibmemoryclient vlibmemory_api_headers)
47
48 add_vat_test_library(vlib
49   vlibapi_test.c
50 )
51 ##############################################################################
52 # VAT2 plugins
53 ##############################################################################
54 add_vpp_test_library(vlibmemoryclient
55   memclnt.api
56 )
57 add_vpp_test_library(vlibmemory
58     vlib.api
59 )