blob: 9edfec76624fa89bf40736d376dcc01dc1779ac7 [file] [log] [blame]
Mohsin Kazmi99ddcc32018-08-22 10:54:42 +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
14##############################################################################
15# vat plugin shared library
16##############################################################################
17add_library(vatplugin SHARED plugin_api.c)
18target_link_libraries(vatplugin vppinfra)
19add_dependencies (vatplugin vppinfra)
20install(TARGETS vatplugin DESTINATION lib)
21
22##############################################################################
23# vpp_api_test
24##############################################################################
25add_executable (vpp_api_test
26 api_format.c
27 main.c
28 plugin.c
29 json_format.c
30 vat.h
31 json_format.h
32)
33target_link_libraries (vpp_api_test vlibmemoryclient svm vatplugin vppinfra
34 Threads::Threads rt m dl crypto)
35set_target_properties(vpp_api_test PROPERTIES ENABLE_EXPORTS 1)
36install(TARGETS vpp_api_test DESTINATION bin)
37
38##############################################################################
39# vpp_json_test
40##############################################################################
41add_executable (vpp_json_test
42 json_format.h
43 json_format.c
44 json_test.c)
45target_link_libraries(vpp_json_test vppinfra m)
46set_target_properties(vpp_json_test PROPERTIES ENABLE_EXPORTS 1)
47install(TARGETS vpp_json_test DESTINATION bin)
48
49##############################################################################
50# vat headers
51##############################################################################
52vpp_add_header_files(vat
53 vat.h
54 json_format.h
55)
56
57##############################################################################
58# restart
59##############################################################################
60add_executable (vpp_restart restart.c)
61target_link_libraries (vpp_restart svmdb svm vppinfra pthread rt)
62install(TARGETS vpp_restart DESTINATION bin )
63