diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2017-08-03 02:11:34 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-08-11 02:50:51 +0000 |
commit | 543852a46ce107243ed92254bd88b87ca82bbd0b (patch) | |
tree | e9e1b95850dfcbdc116e0f6ee219c2e75cfff266 /src/uri.am | |
parent | 7faab8d3a571a272506eb463fc470b9dbe8a02a7 (diff) |
Add VPP Communications Library (VCL)
- VCL library
- client/server test application
- test script (make test integration tbd)
- gdb command file templates
- vppcom test config file
Change-Id: I21eab7aa09b4e5dc3412acf5c2eab07415c2fc0f
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'src/uri.am')
-rw-r--r-- | src/uri.am | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/src/uri.am b/src/uri.am index fb7570ffa44..ae6feb6f35b 100644 --- a/src/uri.am +++ b/src/uri.am @@ -11,7 +11,34 @@ # See the License for the specific language governing permissions and # limitations under the License. -noinst_PROGRAMS += uri_udp_test uri_tcp_test uri_socket_test uri_socket_server +lib_LTLIBRARIES += libvppcom.la + +libvppcom_la_SOURCES = +libvppcom_la_DEPENDENCIES = \ + libvppinfra.la \ + libvlib.la \ + libsvmdb.la \ + libsvm.la \ + libvlibmemory.la \ + libvlibmemoryclient.la + +libvppcom_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread + +libvppcom_la_SOURCES += \ + uri/vppcom.c + +nobase_include_HEADERS += \ + uri/vppcom.h + +noinst_PROGRAMS += \ + uri_udp_test \ + uri_tcp_test \ + uri_socket_test \ + uri_socket_server \ + vcl_test_server \ + vcl_test_client \ + sock_test_server \ + sock_test_client uri_udp_test_SOURCES = uri/uri_udp_test.c uri_udp_test_LDADD = libvlibmemoryclient.la libsvm.la \ @@ -26,3 +53,15 @@ uri_socket_test_LDADD = libvppinfra.la -lpthread -lm -lrt uri_socket_server_SOURCES = uri/uri_socket_server.c uri_socket_server_LDADD = libvppinfra.la -lpthread -lm -lrt + +vcl_test_server_SOURCES = uri/vcl_test_server.c +vcl_test_server_LDADD = libvppcom.la + +vcl_test_client_SOURCES = uri/vcl_test_client.c +vcl_test_client_LDADD = libvppcom.la + +sock_test_server_SOURCES = uri/sock_test_server.c +sock_test_client_SOURCES = uri/sock_test_client.c + +nobase_include_HEADERS += \ + uri/sock_test.h |