summaryrefslogtreecommitdiffstats
path: root/src/vcl/CMakeLists.txt
AgeCommit message (Expand)AuthorFilesLines
2020-09-14vcl: add support for app socket apiFlorin Coras1-0/+1
2019-06-26hsa: move vcl test apps to hsaFlorin Coras1-20/+1
2019-03-15vcl: cleanup debug messagesFlorin Coras1-1/+1
2019-01-07vcl/ldp: add locked sessions shim layerFlorin Coras1-0/+2
2018-10-07vcl: cleanup and fixes for vcl test codeFlorin Coras1-1/+0
2018-09-22vcl: remove vcl_eventFlorin Coras1-4/+0
2018-09-12vcl: improve read and fifo event handlingFlorin Coras1-0/+3
2018-09-11remove libvlib from libvlibmemoryclient libsMatthew Smith1-1/+1
2018-09-04vcl: refactor test apps to use multiple workersFlorin Coras1-1/+1
2018-09-02Switch to cmakeDamjan Marion1-0/+9
2018-08-28cmake: don't install some test executableDamjan Marion1-1/+2
2018-08-26cmake: add add_vpp_library and add_vpp_executable macrosDamjan Marion1-11/+8
2018-08-25cmake: add more headers to the install listDamjan Marion1-0/+6
2018-08-17CMake as an alternative to autotools (experimental)Damjan Marion1-0/+53
filiates. # 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. noinst_PROGRAMS += \ uri_udp_test \ uri_tcp_test \ uri_socket_test \ uri_socket_server uri_udp_test_SOURCES = uri/uri_udp_test.c uri_udp_test_LDADD = libvlibmemoryclient.la libsvm.la \ libvppinfra.la -lpthread -lm -lrt uri_tcp_test_SOURCES = uri/uri_tcp_test.c uri_tcp_test_LDADD = libvlibmemoryclient.la libsvm.la \ libvppinfra.la -lpthread -lm -lrt uri_socket_test_SOURCES = uri/uri_socket_test.c 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