CMake: generate .json from .api files
[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 add_library (vlibmemoryclient SHARED
33   memory_shared.c
34   memory_client.c
35   socket_client.c
36   ../vlibapi/api_shared.c
37   ../vlibapi/node_serialize.c
38 )
39
40 target_link_libraries (vlibmemoryclient vppinfra svm vlib)
41 add_dependencies(vlibmemoryclient vlibmemory_api_headers)
42 install (TARGETS vlibmemoryclient DESTINATION lib)