As per CMakeLists.txt of Zip,
target_link_libraries(Zip PUBLIC Poco::Util Poco::XML)
Poco::XML is linked to Zip target.
Why is it done? What functionality of Poco::XML is Poco::Zip dependent on?
What happens is Poco::XML is not linked to Zip? What functionalities of Poco Zip will be impacted?
I want to build and deploy Poco Zip on linux x86 without building and linking Poco XML. Is that possible?