blob: 72cc1b29cfdc3ad7e7c20642843e7c80ca9e709a [file] [log] [blame]
Neale Ranns2ddfe752018-08-20 05:07:13 -07001# 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##############################################################################
15# vpp api client library
16##############################################################################
17
Damjan Marion4553c952018-08-26 11:04:40 +020018add_vpp_library (vppapiclient
19 SOURCES
Neale Ranns2ddfe752018-08-20 05:07:13 -070020 client/client.c
Ole Troan2fee1672018-08-23 13:00:53 +020021 client/stat_client.c
Neale Ranns2ddfe752018-08-20 05:07:13 -070022 client/libvppapiclient.map
Ole Troan58492a82018-09-04 13:19:12 +020023 LINK_LIBRARIES vppinfra vlibmemoryclient pthread
Damjan Marion4553c952018-08-26 11:04:40 +020024)
25add_dependencies(vppapiclient vpp_version_h api_headers)
26
27add_vpp_headers(vpp-api
Damjan Marion2bfdda72018-08-24 21:36:42 +020028 client/vppapiclient.h
Ole Troan2fee1672018-08-23 13:00:53 +020029 client/stat_client.h
Damjan Marion2bfdda72018-08-24 21:36:42 +020030)
Damjan Marion4c64b6e2018-08-26 18:14:46 +020031
Ole Troan3c70c052020-08-10 16:25:21 +020032add_vpp_executable(test_vppapiclient NO_INSTALL
33 SOURCES client/test.c
34 LINK_LIBRARIES vppinfra pthread vppapiclient
35)
36
Damjan Marion4c64b6e2018-08-26 18:14:46 +020037add_subdirectory(vapi)
Damjan Marion4a53e832018-08-26 22:02:34 +020038add_subdirectory(python)