cmake: add more headers to the install list
[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 vpp_add_api_files(vlibmemory_api_headers
15   memclnt.api
16 )
17
18 add_library (vlibmemory SHARED
19   memory_api.c
20   memory_shared.c
21   memory_client.c
22   socket_api.c
23   vlib_api.c
24   vlib_api_cli.c
25   ../vlibapi/api_shared.c
26   ../vlibapi/node_serialize.c
27 )
28 target_link_libraries (vlibmemory vppinfra svm vlib)
29 add_dependencies(vlibmemory vlibmemory_api_headers)
30 install (TARGETS vlibmemory DESTINATION lib)
31
32 vpp_add_header_files(vlibmemory
33   vl_memory_msg_enum.h
34   memory_shared.h
35   vl_memory_api_h.h
36   socket_client.h
37   memory_api.h
38   api.h
39   memory_client.h
40   socket_api.h
41 )
42
43 add_library (vlibmemoryclient SHARED
44   memory_shared.c
45   memory_client.c
46   socket_client.c
47   ../vlibapi/api_shared.c
48   ../vlibapi/node_serialize.c
49 )
50
51 target_link_libraries (vlibmemoryclient vppinfra svm vlib)
52 add_dependencies(vlibmemoryclient vlibmemory_api_headers)
53 install (TARGETS vlibmemoryclient DESTINATION lib)