vcl: add api to retrieve num bytes for tx
[vpp.git] / src / vcl / CMakeLists.txt
1 # Copyright (c) 2018-2019 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 if(NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
15   message(WARNING "-- vppcom is currently only support on Linux - disabled")
16   return()
17 endif()
18
19 ##############################################################################
20 # vppcom shared library
21 ##############################################################################
22 add_vpp_library(vppcom
23   SOURCES
24   vppcom.c
25   vcl_bapi.c
26   vcl_cfg.c
27   vcl_private.c
28   vcl_locked.c
29   vcl_sapi.c
30
31   LINK_LIBRARIES
32   vppinfra svm vlibmemoryclient rt pthread
33
34   DEPENDS
35   api_headers
36 )
37
38 option(LDP_HAS_GNU_SOURCE "LDP configured to use _GNU_SOURCE" ON)
39 if (LDP_HAS_GNU_SOURCE)
40   add_compile_definitions(HAVE_GNU_SOURCE)
41 endif(LDP_HAS_GNU_SOURCE)
42
43 add_vpp_library(vcl_ldpreload
44   SOURCES
45   ldp_socket_wrapper.c
46   ldp.c
47
48   LINK_LIBRARIES
49   vppinfra svm vlibmemoryclient rt pthread vppcom dl
50 )
51
52 add_vpp_headers(vcl
53   ldp.h
54   ldp_glibc_socket.h
55   vppcom.h
56   vcl_locked.h
57   ldp_socket_wrapper.h
58 )