diff options
author | Chuhao Tang <nicotang@cisco.com> | 2023-04-27 15:43:42 +0200 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2023-05-12 06:59:09 +0000 |
commit | cefb178aa487a217d4ac75d7d4fa62db4b7d70fd (patch) | |
tree | aeacf10d2387eeb3564ac42cacae17679d060e6c /src/vnet/CMakeLists.txt | |
parent | 683bdb6743e0568bbf02c1f4953d3f73e6f2b544 (diff) |
gre: move to a plugin
Move GRE folder under vnet to the plugin folder, and modify some of path
of the #inlude<header> to the new path.
Add a plugin.c file to register a plugin.
JIRA: VPP-2044
Type: improvement
Change-Id: I7f64cecd97538a7492e56a41558dab58281a9fa5
Signed-off-by: Chuhao Tang <nicotang@cisco.com>
Diffstat (limited to 'src/vnet/CMakeLists.txt')
-rw-r--r-- | src/vnet/CMakeLists.txt | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/vnet/CMakeLists.txt b/src/vnet/CMakeLists.txt index c1c9acc41a0..5aada92e8d9 100644 --- a/src/vnet/CMakeLists.txt +++ b/src/vnet/CMakeLists.txt @@ -668,27 +668,10 @@ list(APPEND VNET_API_FILES udp/udp.api) ############################################################################## # Tunnel protocol: gre ############################################################################## -list(APPEND VNET_SOURCES - gre/gre.c - gre/node.c - gre/interface.c - gre/pg.c - gre/gre_api.c -) - -list(APPEND VNET_MULTIARCH_SOURCES - gre/node.c - gre/gre.c -) - list(APPEND VNET_HEADERS - gre/gre.h gre/packet.h - gre/error.def ) -list(APPEND VNET_API_FILES gre/gre.api) - ############################################################################## # Tunnel protocol: ipip ############################################################################## |