Florin Coras | 5e06257 | 2019-03-14 19:07:51 -0700 | [diff] [blame] | 1 | # Copyright (c) 2018-2019 Cisco and/or its affiliates. |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 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 | # vppcom shared library |
| 16 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 17 | add_vpp_library(vppcom |
| 18 | SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 19 | vppcom.c |
| 20 | vcl_bapi.c |
| 21 | vcl_cfg.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 22 | vcl_private.c |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 23 | vcl_locked.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 24 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 25 | LINK_LIBRARIES |
| 26 | vppinfra svm vlibmemoryclient rt pthread |
Florin Coras | 41c9e04 | 2018-09-11 00:10:41 -0700 | [diff] [blame] | 27 | |
| 28 | DEPENDS |
| 29 | api_headers |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 30 | ) |
| 31 | |
Damjan Marion | 855e268 | 2018-08-24 13:37:45 +0200 | [diff] [blame] | 32 | add_vpp_library(vcl_ldpreload |
| 33 | SOURCES |
| 34 | ldp_socket_wrapper.c |
| 35 | ldp.c |
| 36 | |
| 37 | LINK_LIBRARIES |
Matthew Smith | 0be66e1 | 2018-09-07 17:14:30 -0500 | [diff] [blame] | 38 | vppinfra svm vlibmemoryclient rt pthread vppcom dl |
Damjan Marion | 855e268 | 2018-08-24 13:37:45 +0200 | [diff] [blame] | 39 | ) |
| 40 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 41 | add_vpp_headers(vcl |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 42 | ldp.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 43 | sock_test.h |
| 44 | ldp_glibc_socket.h |
| 45 | vcl_test.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 46 | vppcom.h |
Florin Coras | 7baeb71 | 2019-01-04 17:05:43 -0800 | [diff] [blame] | 47 | vcl_locked.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 48 | ldp_socket_wrapper.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 49 | ) |
| 50 | |
| 51 | ############################################################################## |
| 52 | # vcl tests |
| 53 | ############################################################################## |
| 54 | option(VPP_BUILD_VCL_TESTS "Build vcl tests." ON) |
| 55 | if(VPP_BUILD_VCL_TESTS) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 56 | foreach(test |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 57 | vcl_test_server |
| 58 | vcl_test_client |
| 59 | sock_test_server |
| 60 | sock_test_client |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 61 | ) |
Florin Coras | 293aa05 | 2018-08-30 18:49:13 -0700 | [diff] [blame] | 62 | add_vpp_executable(${test} SOURCES ${test}.c LINK_LIBRARIES vppcom pthread |
Damjan Marion | 258a4cf | 2018-08-28 13:20:44 +0200 | [diff] [blame] | 63 | NO_INSTALL) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 64 | endforeach() |
| 65 | endif(VPP_BUILD_VCL_TESTS) |
| 66 | |