CMake as an alternative to autotools (experimental)
[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_generate_api_header(memclnt.api)
15 add_custom_target(vlibmemory_api_headers DEPENDS memclnt.api.h)
16
17 add_library (vlibmemory SHARED
18   memory_api.c
19   memory_shared.c
20   memory_client.c
21   socket_api.c
22   vlib_api.c
23   vlib_api_cli.c
24   ../vlibapi/api_shared.c
25   ../vlibapi/node_serialize.c
26 )
27 target_link_libraries (vlibmemory vppinfra svm vlib)
28 add_dependencies(vlibmemory vlibmemory_api_headers)
29 install (TARGETS vlibmemory DESTINATION lib)
30
31 add_library (vlibmemoryclient SHARED
32   memory_shared.c
33   memory_client.c
34   socket_client.c
35   ../vlibapi/api_shared.c
36   ../vlibapi/node_serialize.c
37 )
38
39 target_link_libraries (vlibmemoryclient vppinfra svm vlib)
40 add_dependencies(vlibmemoryclient vlibmemory_api_headers)
41 install (TARGETS vlibmemoryclient DESTINATION lib)