From c5685ecfe8d6617ab969b69d033edcb653c51d59 Mon Sep 17 00:00:00 2001 From: andrej Date: Fri, 9 Dec 2022 12:14:52 +0100 Subject: [PATCH] interfaces-plugin: don't link against utils/memory --- src/interfaces/tests/CMakeLists.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/interfaces/tests/CMakeLists.txt b/src/interfaces/tests/CMakeLists.txt index 26fa9f7f..1fbb933b 100644 --- a/src/interfaces/tests/CMakeLists.txt +++ b/src/interfaces/tests/CMakeLists.txt @@ -15,11 +15,6 @@ target_include_directories( ${INTERFACES_UTEST_NAME} PUBLIC ${CMAKE_SOURCE_DIR}/src/interfaces/src ) -add_library( - ${UTILS_MEMORY_LIBRARY_NAME} - STATIC - ${CMAKE_SOURCE_DIR}/src/utils/memory.c -) target_link_options( ${INTERFACES_UTEST_NAME} PRIVATE ${INTERFACES_UTEST_LINKER_OPTIONS} @@ -31,7 +26,6 @@ target_link_libraries( ${PLUGIN_LIBRARY_NAME} ${SYSREPO_LIBRARIES} ${LIBYANG_LIBRARIES} - ${UTILS_MEMORY_LIBRARY_NAME} ) add_test( NAME ${INTERFACES_UTEST_NAME}