On Tue, 19 Aug 2025 at 19:14, F. E. <exler7...@gmail.com> wrote: > I honestly don't know what I'm doing wrong. I'm just doing the basic > stuff: Extracting the archive to a folder and then running cmake there, > ... > %CMAKE_DIR%\*cmake.exe . <---------* >
Maybe you lack a bit of context: for developers using CMake creating the build files "in-source" or "in-tree" is neither common nor recommended, see[1]. This means you should really try a out-of-source build directory, meaning you create a build directory and run cmake from there locating CMakelists.txt, eg. : mkdir build cd build cmake .. # parent directory has CMakelists.txt Try this and I believe it should work, and try the same way with libxml2. If this works for you then I will consider explicitly disallowing "in-source" builds. Regards, Francesco [1] "In-source builds where the source and binary directories are the same are supported but should be avoided if possible", https://cmake.org/cmake/help/book/mastering-cmake/chapter/Getting%20Started.html#directory-structure
_______________________________________________ Podofo-users mailing list Podofo-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/podofo-users