diff options
author | 2019-08-12 12:02:25 +0200 | |
---|---|---|
committer | 2019-09-23 12:41:05 +0000 | |
commit | a583e2d75bacf0bb70158f69a9a4d570e23f218a (patch) | |
tree | b5497e6cd27c1223de76f17b6d58f183e4597b84 /src/plugins/hs_apps/CMakeLists.txt | |
parent | fd3b9207a6465e362608912b419ec3a57e79e3b9 (diff) |
hsa: move tcp_echo to vpp_echo
Type: refactor
Change-Id: Ic23859a1686eff2ae4d08a86b69ff4813498459e
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
(cherry picked from commit a8462fbca3bdfa5da602f7787f83bbdf8da64d5d)
Diffstat (limited to 'src/plugins/hs_apps/CMakeLists.txt')
-rw-r--r-- | src/plugins/hs_apps/CMakeLists.txt | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/plugins/hs_apps/CMakeLists.txt b/src/plugins/hs_apps/CMakeLists.txt index 2334cb5b952..ff097339da8 100644 --- a/src/plugins/hs_apps/CMakeLists.txt +++ b/src/plugins/hs_apps/CMakeLists.txt @@ -28,18 +28,13 @@ add_vpp_plugin(hs_apps ############################################################################## option(VPP_BUILD_HS_SAPI_APPS "Build hs apps that use the session api." ON) if(VPP_BUILD_HS_SAPI_APPS) - add_vpp_executable(tcp_echo - SOURCES sapi/tcp_echo.c - LINK_LIBRARIES vlibmemoryclient svm vppinfra pthread m rt - DEPENDS api_headers - NO_INSTALL - ) add_vpp_executable(vpp_echo SOURCES sapi/vpp_echo.c sapi/vpp_echo_common.c sapi/vpp_echo_bapi.c sapi/vpp_echo_proto_quic.c + sapi/vpp_echo_proto_tcp.c LINK_LIBRARIES vlibmemoryclient svm vppinfra pthread m rt DEPENDS api_headers NO_INSTALL |