api: fromjson/tojson enum flag support
[vpp.git] / src / vat2 / CMakeLists.txt
1 # Copyright (c) 2020 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 # vat2
16 ##############################################################################
17 add_vpp_executable(vat2 ENABLE_EXPORTS NO_INSTALL
18   SOURCES
19   main.c
20   plugin.c
21   jsonconvert.c
22
23   DEPENDS api_headers
24
25   LINK_LIBRARIES
26   vlibmemoryclient
27   svm
28   vppinfra
29   vppapiclient
30   Threads::Threads
31   rt m dl crypto
32 )
33
34 #
35 # Unit test code. Call generator directly to avoid it being installed
36 #set_source_files_properties(vat2_test.c PROPERTIES
37 #  COMPILE_FLAGS " -fsanitize=address"
38 #)
39
40 vpp_generate_api_c_header (test/vat2_test.api)
41 add_vpp_executable(test_vat2 ENABLE_EXPORTS NO_INSTALL
42   SOURCES
43   test/vat2_test.c
44   jsonconvert.c
45
46   DEPENDS api_headers
47
48   LINK_LIBRARIES
49   vlibmemoryclient
50   svm
51   vppinfra
52   vppapiclient
53   Threads::Threads
54   rt m dl crypto
55 )
56 #target_link_options(test_vat2 PUBLIC "LINKER:-fsanitize=address")
57 ##############################################################################
58 # vat2 headers
59 ##############################################################################
60 install(
61   FILES
62   jsonconvert.h
63   vat2_helpers.h
64   DESTINATION include/vat2
65   COMPONENT vpp-dev
66 )