diff --git a/CMakeLists.txt b/CMakeLists.txt index b664afd676..acbe56696d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -274,16 +274,6 @@ if(ENABLE_POCODOC) set(ENABLE_CPPPARSER ON CACHE BOOL "Enable C++ parser" FORCE) endif() -if(ENABLE_SEVENZIP OR ENABLE_ZIP) - set(ENABLE_UTIL ON CACHE BOOL "Enable Util" FORCE) - set(ENABLE_XML ON CACHE BOOL "Enable XML" FORCE) -endif() - -if(ENABLE_UTIL AND ENABLE_TESTS) - set(ENABLE_JSON ON CACHE BOOL "Enable JSON" FORCE) - set(ENABLE_XML ON CACHE BOOL "Enable XML" FORCE) -endif() - if(ENABLE_JWT) set(ENABLE_CRYPTO ON CACHE BOOL "Enable Crypto" FORCE) set(ENABLE_JSON ON CACHE BOOL "Enable JSON" FORCE) diff --git a/SevenZip/CMakeLists.txt b/SevenZip/CMakeLists.txt index ea07537b78..96ca10721d 100644 --- a/SevenZip/CMakeLists.txt +++ b/SevenZip/CMakeLists.txt @@ -62,7 +62,7 @@ set_target_properties(SevenZip DEFINE_SYMBOL SevenZip_EXPORTS ) -target_link_libraries(SevenZip PUBLIC Poco::Util Poco::XML) +target_link_libraries(SevenZip PUBLIC Poco::Foundation) target_include_directories(SevenZip PUBLIC $ diff --git a/SevenZip/dependencies b/SevenZip/dependencies index a4b61d5e93..2e8175e4e1 100644 --- a/SevenZip/dependencies +++ b/SevenZip/dependencies @@ -1,4 +1 @@ Foundation -Util -XML -JSON \ No newline at end of file diff --git a/Zip/CMakeLists.txt b/Zip/CMakeLists.txt index e89587ca5a..c3a25fb41a 100644 --- a/Zip/CMakeLists.txt +++ b/Zip/CMakeLists.txt @@ -21,7 +21,7 @@ set_target_properties(Zip DEFINE_SYMBOL Zip_EXPORTS ) -target_link_libraries(Zip PUBLIC Poco::Util Poco::XML) +target_link_libraries(Zip PUBLIC Poco::Foundation) target_include_directories(Zip PUBLIC $ diff --git a/Zip/dependencies b/Zip/dependencies index eb31962948..2e8175e4e1 100644 --- a/Zip/dependencies +++ b/Zip/dependencies @@ -1,5 +1 @@ Foundation -Net -Util -XML -JSON \ No newline at end of file