From 5649a47373ee0ec9b204dbe74296678ab77ef20e Mon Sep 17 00:00:00 2001 From: nyashbox Date: Sat, 30 Nov 2024 23:32:10 +0200 Subject: [PATCH] fix(Zip): don't link/find unnecessary components --- Zip/cmake/PocoZipConfig.cmake | 2 -- Zip/testsuite/CMakeLists.txt | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Zip/cmake/PocoZipConfig.cmake b/Zip/cmake/PocoZipConfig.cmake index 3db18126a..1b231d07d 100644 --- a/Zip/cmake/PocoZipConfig.cmake +++ b/Zip/cmake/PocoZipConfig.cmake @@ -1,5 +1,3 @@ include(CMakeFindDependencyMacro) find_dependency(PocoFoundation) -find_dependency(PocoUtil) -find_dependency(PocoXML) include("${CMAKE_CURRENT_LIST_DIR}/PocoZipTargets.cmake") diff --git a/Zip/testsuite/CMakeLists.txt b/Zip/testsuite/CMakeLists.txt index 7fc4b93db..a0e048ded 100644 --- a/Zip/testsuite/CMakeLists.txt +++ b/Zip/testsuite/CMakeLists.txt @@ -29,4 +29,4 @@ else() COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/data ${CMAKE_CURRENT_BINARY_DIR}/data ) endif() -target_link_libraries(Zip-testrunner PUBLIC Poco::Zip Poco::Net CppUnit) +target_link_libraries(Zip-testrunner PUBLIC Poco::Zip CppUnit)