Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #2098 #2105

Merged
merged 1 commit into from Apr 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion include/CMakeLists.txt
Expand Up @@ -3,6 +3,7 @@ file(GLOB openbabel_headers openbabel/*.h)
file(GLOB math_headers openbabel/math/*.h)
file(GLOB stereo_headers openbabel/stereo/*.h)
file(GLOB depict_headers openbabel/depict/*.h)
file(GLOB lbfgs_headers LBFGS/*.h)

if(NOT OPENBABEL_USE_SYSTEM_INCHI)
install(FILES inchi_api.h DESTINATION include/inchi)
Expand All @@ -11,4 +12,8 @@ install(FILES chemdrawcdx.h DESTINATION ${OB_INCLUDE_DIRS}/openbabel)
install(FILES ${openbabel_headers} DESTINATION ${OB_INCLUDE_DIRS}/openbabel)
install(FILES ${math_headers} DESTINATION ${OB_INCLUDE_DIRS}/openbabel/math)
install(FILES ${stereo_headers} DESTINATION ${OB_INCLUDE_DIRS}/openbabel/stereo)
install(FILES ${depict_headers} DESTINATION ${OB_INCLUDE_DIRS}/openbabel/depict)
install(FILES ${depict_headers} DESTINATION ${OB_INCLUDE_DIRS}/openbabel/depict)
if(EIGEN2_FOUND OR EIGEN3_FOUND)
install(FILES LBFGS.h DESTINATION ${OB_INCLUDE_DIRS})
install(FILES ${lbfgs_headers} DESTINATION ${OB_INCLUDE_DIRS}/LBFGS)
endif()