Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion export/CMakeLists.txt.export
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,8 @@ install(CODE "
configure_file(
\"${PROJECT_SOURCE_DIR}/include/libint2/basis.h.in\"
\"\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${LIBINT2_INSTALL_INCLUDEDIR}/libint2/basis.h\"
@ONLY)
@ONLY
NO_SOURCE_PERMISSIONS) # else installed basis.h inherits basis.h.in's perms (e.g. 0600), which vary by build env
")
Comment on lines -794 to 805

# install bundled Boost headers if needed
Expand Down
3 changes: 2 additions & 1 deletion src/lib/libint/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ else()
configure_file(
\"${PROJECT_SOURCE_DIR}/include/libint2/basis.h.in\"
\"\${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR}/libint2/basis.h\"
@ONLY)
@ONLY
NO_SOURCE_PERMISSIONS) # else installed basis.h inherits basis.h.in's perms (e.g. 0600), which vary by build env
")
endif()
Loading