blob: b48ff7b57667f3a4c8b2b76bfd496f7875547cb7 [file] [log] [blame]
Damjan Marion612dd6a2018-07-30 12:45:07 +02001# 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
Damjan Marion4553c952018-08-26 11:04:40 +020014add_vpp_library (vlibmemory
15 SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +020016 memory_api.c
17 memory_shared.c
18 memory_client.c
Dave Barach7f475bf2020-05-26 11:19:28 -040019 socket_client.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020020 socket_api.c
21 vlib_api.c
22 vlib_api_cli.c
23 ../vlibapi/api_shared.c
24 ../vlibapi/node_serialize.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020025
Damjan Marion4553c952018-08-26 11:04:40 +020026 INSTALL_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +020027 vl_memory_msg_enum.h
28 memory_shared.h
29 vl_memory_api_h.h
30 socket_client.h
31 memory_api.h
32 api.h
33 memory_client.h
34 socket_api.h
Damjan Marion2bfdda72018-08-24 21:36:42 +020035
Damjan Marion4553c952018-08-26 11:04:40 +020036 API_FILES
37 memclnt.api
38
39 LINK_LIBRARIES vppinfra svm vlib
40)
41add_dependencies(vlibmemory vlibmemory_api_headers)
42
43add_vpp_library (vlibmemoryclient
44 SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +020045 memory_shared.c
46 memory_client.c
47 socket_client.c
48 ../vlibapi/api_shared.c
49 ../vlibapi/node_serialize.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020050
Matthew Smith0be66e12018-09-07 17:14:30 -050051 LINK_LIBRARIES vppinfra svm
Damjan Marion4553c952018-08-26 11:04:40 +020052)
Damjan Marion612dd6a2018-07-30 12:45:07 +020053add_dependencies(vlibmemoryclient vlibmemory_api_headers)