I use Poco on Windows, Linux, and MacOS in several projects where I've handcrafted makefiles. I'm trying to be a good citizen and turn these into CMake projects, because it's easier for others to build my code that way. On Linux, it's easy to use find_package(Poco, REQUIRED COMPONENTS Foundation Net Util), and everything gets found. On Windows, I have to hardcode include directories and library directories.
If I try find_package on Windows, I get a complaint that PocoConfig.cmake is not found in my root. There's a cmake/PocoConfig.cmake.in, and if I copy that to the root, then it complains about PocoFoundationConfig.cmake.
Clearly, I have missed a step. What step have I missed that would automatically have placed all of these PocoXxxx.cmake files where they belong? I feel like I'm very close.