aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ioam
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2018-07-30 12:45:07 +0200
committerFlorin Coras <florin.coras@gmail.com>2018-08-17 22:14:39 +0000
commit612dd6a955e44d2c0fed1801fb8de585ca695c63 (patch)
treea49c3004a7122077a884dce483daebc280199761 /src/plugins/ioam
parent5d82d2f1495e189c4687a6462850cbbb3ea38b17 (diff)
CMake as an alternative to autotools (experimental)
Change-Id: Ibc59323e849810531dd0963e85493efad3b86857 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/ioam')
-rw-r--r--src/plugins/ioam/CMakeLists.txt99
1 files changed, 99 insertions, 0 deletions
diff --git a/src/plugins/ioam/CMakeLists.txt b/src/plugins/ioam/CMakeLists.txt
new file mode 100644
index 00000000000..ed8bd196aba
--- /dev/null
+++ b/src/plugins/ioam/CMakeLists.txt
@@ -0,0 +1,99 @@
+# Copyright (c) 2018 Cisco and/or its affiliates.
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at:
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+add_vpp_plugin(ioam_plugin
+ # iOAM Proof of Transit
+ lib-pot/pot.api
+ lib-pot/pot_util.c
+ encap/ip6_ioam_pot.c
+ lib-pot/pot_api.c
+
+ # iOAM trace export for IPv6
+ export/ioam_export.api
+ export/ioam_export.c
+ export/node.c
+ export/ioam_export_thread.c
+
+ # iOAM Trace
+ lib-trace/trace.api
+ lib-trace/trace_util.c
+ encap/ip6_ioam_trace.c
+ lib-trace/trace_api.c
+
+ # VxLAN-GPE
+ lib-vxlan-gpe/ioam_vxlan_gpe.api
+ lib-vxlan-gpe/ioam_encap.c
+ lib-vxlan-gpe/ioam_decap.c
+ lib-vxlan-gpe/ioam_transit.c
+ lib-vxlan-gpe/ioam_pop.c
+ lib-vxlan-gpe/vxlan_gpe_api.c
+ lib-vxlan-gpe/vxlan_gpe_ioam_trace.c
+ lib-vxlan-gpe/vxlan_gpe_ioam.c
+ export-vxlan-gpe/vxlan_gpe_ioam_export.api
+ export-vxlan-gpe/vxlan_gpe_ioam_export.c
+ export-vxlan-gpe/vxlan_gpe_node.c
+ export-vxlan-gpe/vxlan_gpe_ioam_export_thread.c
+
+ # iOAM E2E
+ encap/ip6_ioam_e2e.c
+ encap/ip6_ioam_seqno.c
+ lib-e2e/ioam_seqno_lib.c
+
+ # ipfix collector
+ ipfixcollector/ipfixcollector.c
+ ipfixcollector/node.c
+
+ # iOAM Analyse
+ analyse/ip6/ip6_ioam_analyse.c
+ analyse/ip6/node.c
+ analyse/ioam_summary_export.c
+
+ # iOAM record cache and rewrite
+ ip6/ioam_cache.api
+ ip6/ioam_cache.c
+ ip6/ioam_cache_node.c
+ ip6/ioam_cache_tunnel_select_node.c
+
+ # udp ping
+ udp-ping/udp_ping.api
+ udp-ping/udp_ping_node.c
+ udp-ping/udp_ping_util.c
+ udp-ping/udp_ping_export.c
+ udp-ping/udp_ping_api.c
+)
+
+add_vpp_api_test_plugin(ioam_pot_test_plugin
+ lib-pot/pot.api
+ lib-pot/pot_test.c
+)
+
+add_vpp_api_test_plugin(ioam_export_test_plugin
+ export/ioam_export.api
+ export/ioam_export_test.c
+)
+
+add_vpp_api_test_plugin(ioam_trace_test_plugin
+ lib-trace/trace.api
+ lib-trace/trace_test.c
+)
+
+add_vpp_api_test_plugin(ioam_vxlan_gpe_test_plugin
+ lib-vxlan-gpe/ioam_vxlan_gpe.api
+ lib-vxlan-gpe/vxlan_gpe_test.c
+)
+
+add_vpp_api_test_plugin(ioam_udp_ping_test_plugin
+ udp-ping/udp_ping.api
+ udp-ping/udp_ping_test.c
+)
+