diff options
author | Florin Coras <fcoras@cisco.com> | 2019-06-24 18:02:43 -0700 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2019-06-25 15:38:30 +0000 |
commit | f910e51608d5a2a52d4b7e9fefcbfdaaef97f10d (patch) | |
tree | c8abd7179589360eee174f44e4b4cafbd5819821 /src/plugins/hs_apps/CMakeLists.txt | |
parent | 8eb3e07dea2c905ab46e0236bca9750224484ee8 (diff) |
hsa: move external echo apps to hsa
Type: refactor
Change-Id: I9a5c2abfd0c5444b31d9020cea918f9cd28f1ac2
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/plugins/hs_apps/CMakeLists.txt')
-rw-r--r-- | src/plugins/hs_apps/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/plugins/hs_apps/CMakeLists.txt b/src/plugins/hs_apps/CMakeLists.txt index d27c8512306..e7885c3d1bf 100644 --- a/src/plugins/hs_apps/CMakeLists.txt +++ b/src/plugins/hs_apps/CMakeLists.txt @@ -19,3 +19,25 @@ add_vpp_plugin(hs_apps http_server.c proxy.c ) + +option(VPP_BUILD_SESSION_ECHO_APPS "Build session echo apps." ON) +if(VPP_BUILD_SESSION_ECHO_APPS) + add_vpp_executable(tcp_echo + SOURCES tcp_echo.c + LINK_LIBRARIES vlibmemoryclient svm vppinfra pthread m rt + DEPENDS api_headers + NO_INSTALL + ) + add_vpp_executable(quic_echo + SOURCES quic_echo.c + LINK_LIBRARIES vlibmemoryclient svm vppinfra pthread m rt + DEPENDS api_headers + NO_INSTALL + ) + add_vpp_executable(udp_echo + SOURCES udp_echo.c + LINK_LIBRARIES vlibmemoryclient svm vppinfra pthread m rt + DEPENDS api_headers + NO_INSTALL + ) +endif(VPP_BUILD_SESSION_ECHO_APPS) |