X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2FCMakeLists.txt;h=b08ebb61e6fb3daf7b53288211527a450221e0bb;hb=d51250f5e;hp=8cebd32ffe3ef0ef0ea50afb68a274719e62a0ce;hpb=f8cb70177f3321e091632b26cf2a0a67b43878ea;p=vpp.git diff --git a/src/vppinfra/CMakeLists.txt b/src/vppinfra/CMakeLists.txt index 8cebd32ffe3..b08ebb61e6f 100644 --- a/src/vppinfra/CMakeLists.txt +++ b/src/vppinfra/CMakeLists.txt @@ -27,19 +27,19 @@ endif(VPP_VECTOR_GROW_BY_ONE) configure_file( ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in - ${CMAKE_BINARY_DIR}/vppinfra/config.h + ${CMAKE_CURRENT_BINARY_DIR}/config.h ) install( - FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h - DESTINATION include/vppinfra + FILES ${CMAKE_CURRENT_BINARY_DIR}/config.h + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/vppinfra COMPONENT vpp-dev ) add_definitions(-fvisibility=hidden) # Ensure symbols from cJSON are exported -set_source_files_properties( cJSON.c PROPERTIES +set_source_files_properties( cJSON.c jsonformat.c PROPERTIES COMPILE_DEFINITIONS " CJSON_API_VISIBILITY " ) @@ -57,10 +57,12 @@ set(VPPINFRA_SRCS error.c fifo.c format.c + format_table.c graph.c hash.c heap.c interrupt.c + jsonformat.c longjmp.S macros.c maplog.c @@ -77,6 +79,7 @@ set(VPPINFRA_SRCS random.c random_isaac.c rbtree.c + sanitizer.c serialize.c socket.c std-formats.c @@ -96,11 +99,13 @@ set(VPPINFRA_SRCS valloc.c vec.c vector.c + vector/toeplitz.c cJSON.c ) set(VPPINFRA_HEADERS sanitizer.h + bihash_12_4.h bihash_16_8.h bihash_24_8.h bihash_32_8.h @@ -133,10 +138,12 @@ set(VPPINFRA_HEADERS fifo.h file.h format.h + format_table.h graph.h hash.h heap.h interrupt.h + jsonformat.h lb_hash_hash.h llist.h lock.h @@ -144,9 +151,8 @@ set(VPPINFRA_HEADERS macros.h maplog.h math.h - memcpy_avx2.h - memcpy_avx512.h - memcpy_sse3.h + memcpy.h + memcpy_x86_64.h mem.h mhash.h mpcap.h @@ -186,7 +192,13 @@ set(VPPINFRA_HEADERS vector_altivec.h vector_avx2.h vector_avx512.h - vector_funcs.h + vector/array_mask.h + vector/compress.h + vector/count_equal.h + vector/index_to_ptr.h + vector/ip_csum.h + vector/mask_compare.h + vector/toeplitz.h vector.h vector_neon.h vector_sse42.h @@ -200,6 +212,7 @@ if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") elf_clib.c linux/mem.c linux/sysfs.c + linux/netns.c ) endif() @@ -260,4 +273,29 @@ if(VPP_BUILD_VPPINFRA_TESTS) LINK_LIBRARIES vppinfra Threads::Threads ) endforeach() + +set(test_files + vector/test/array_mask.c + vector/test/compress.c + vector/test/count_equal.c + vector/test/index_to_ptr.c + vector/test/ip_csum.c + vector/test/mask_compare.c + vector/test/memcpy_x86_64.c + vector/test/sha2.c + vector/test/toeplitz.c +) + +add_vpp_executable(test_vector_funcs + SOURCES + vector/test/test.c + ${test_files} + LINK_LIBRARIES vppinfra +) + +vpp_library_set_multiarch_sources(test_vector_funcs + SOURCES + ${test_files} +) + endif(VPP_BUILD_VPPINFRA_TESTS)