You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As absolute paths do not work with the cmake --install command's --prefix option, or with the cpack installer generators, it is strongly recommended to use relative paths throughout for best support by package maintainers. In particular, there is no need to make paths absolute by prepending CMAKE_INSTALL_PREFIX; this prefix is used by default if the DESTINATION is a relative path.
so the ${CMAKE_INSTALL_PREFIX} should be removed for better portability
The text was updated successfully, but these errors were encountered:
In this line: (and line 196)
libcint/CMakeLists.txt
Line 195 in 1431b64
according to cmake's doc: https://cmake.org/cmake/help/latest/command/install.html#index-0-manual:cpack(1) :
so the
${CMAKE_INSTALL_PREFIX}
should be removed for better portabilityThe text was updated successfully, but these errors were encountered: