ip: Replace Sematics for Interface IP addresses
[vpp.git] / src / plugins / ioam / CMakeLists.txt
1 # 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 add_vpp_plugin(ioam
15   SOURCES
16   # iOAM Proof of Transit
17   lib-pot/pot_util.c
18   encap/ip6_ioam_pot.c
19   lib-pot/pot_api.c
20
21   # iOAM trace export for IPv6
22   export/ioam_export.c
23   export/node.c
24   export/ioam_export_thread.c
25
26   # iOAM Trace
27   lib-trace/trace_util.c
28   encap/ip6_ioam_trace.c
29   lib-trace/trace_api.c
30
31   # VxLAN-GPE
32   lib-vxlan-gpe/ioam_encap.c
33   lib-vxlan-gpe/ioam_decap.c
34   lib-vxlan-gpe/ioam_transit.c
35   lib-vxlan-gpe/ioam_pop.c
36   lib-vxlan-gpe/vxlan_gpe_api.c
37   lib-vxlan-gpe/vxlan_gpe_ioam_trace.c
38   lib-vxlan-gpe/vxlan_gpe_ioam.c
39   export-vxlan-gpe/vxlan_gpe_ioam_export.c
40   export-vxlan-gpe/vxlan_gpe_node.c
41   export-vxlan-gpe/vxlan_gpe_ioam_export_thread.c
42
43   # iOAM E2E
44   encap/ip6_ioam_e2e.c
45   encap/ip6_ioam_seqno.c
46   lib-e2e/ioam_seqno_lib.c
47
48   # ipfix collector
49   ipfixcollector/ipfixcollector.c
50   ipfixcollector/node.c
51
52   # iOAM Analyse
53   analyse/ip6/ip6_ioam_analyse.c
54   analyse/ip6/node.c
55   analyse/ioam_summary_export.c
56
57   # iOAM record cache and rewrite
58   ip6/ioam_cache.c
59   ip6/ioam_cache_node.c
60   ip6/ioam_cache_tunnel_select_node.c
61
62   # udp ping
63   udp-ping/udp_ping_node.c
64   udp-ping/udp_ping_util.c
65   udp-ping/udp_ping_export.c
66   udp-ping/udp_ping_api.c
67
68   MULTIARCH_SOURCES
69   ip6/ioam_cache_node.c
70   ip6/ioam_cache_tunnel_select_node.c
71
72   API_FILES
73   lib-pot/pot.api
74   export/ioam_export.api
75   lib-trace/trace.api
76   lib-vxlan-gpe/ioam_vxlan_gpe.api
77   export-vxlan-gpe/vxlan_gpe_ioam_export.api
78   ip6/ioam_cache.api
79   udp-ping/udp_ping.api
80
81   INSTALL_HEADERS
82   lib-pot/pot_util.h
83   lib-pot/math64.h
84   lib-trace/trace_util.h
85   encap/ip6_ioam_trace.h
86   lib-trace/trace_config.h
87   export-common/ioam_export.h
88   lib-vxlan-gpe/vxlan_gpe_ioam_util.h
89   lib-vxlan-gpe/vxlan_gpe_ioam_packet.h
90   lib-vxlan-gpe/vxlan_gpe_ioam.h
91   encap/ip6_ioam_e2e.h
92   encap/ip6_ioam_seqno.h
93   lib-e2e/ioam_seqno_lib.h
94   udp-ping/udp_ping_packet.h
95   udp-ping/udp_ping.h
96   udp-ping/udp_ping_util.h
97
98   API_TEST_SOURCES
99   ioam_test.c
100   lib-pot/pot_test.c
101   export/ioam_export_test.c
102   export-vxlan-gpe/vxlan_gpe_ioam_export_test.c
103   lib-trace/trace_test.c
104   lib-vxlan-gpe/vxlan_gpe_test.c
105   udp-ping/udp_ping_test.c
106 )
107