Hi devs,
From CMakeLists.txt, it doesn't seem that Boost is a dependency required globally and its bundled package would not be decompressed when -DLIBINT2_REQUIRE_CXX_API=OFF; however, when I build my libint-cp2k bundles with this option, it throws out an error for not finding Boost headers:
CMake Error at cmake_install.cmake:97 (file):
file INSTALL cannot find
"/root/Downloads/libint-v2.13.1-cp2k-lmax-4/build/include/libint2/boost":
No such file or directory.
Then I would have to manually execute tar -xzf ../external/boost.tar.gz -C ./include/libint2 to solve this problem.
Another question is, would it be possible to make a bundled version of Eigen3 and place it into external directory, so that no system-installed Eigen3 header files are required?
Hi devs,
From
CMakeLists.txt, it doesn't seem that Boost is a dependency required globally and its bundled package would not be decompressed when-DLIBINT2_REQUIRE_CXX_API=OFF; however, when I build my libint-cp2k bundles with this option, it throws out an error for not finding Boost headers:Then I would have to manually execute
tar -xzf ../external/boost.tar.gz -C ./include/libint2to solve this problem.Another question is, would it be possible to make a bundled version of Eigen3 and place it into
externaldirectory, so that no system-installed Eigen3 header files are required?