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

Also install missing files from the code gallery. #10930

Merged
merged 3 commits into from Sep 20, 2020
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions doc/doxygen/code-gallery/CMakeLists.txt
Expand Up @@ -155,6 +155,17 @@ IF (EXISTS ${DEAL_II_CODE_GALLERY_DIRECTORY}/README.md)

ENDFOREACH()

# Now also install the directory in which the script puts copies of everything
# that isn't explicitly annotated and sent through doxygen.
INSTALL(DIRECTORY
${CMAKE_CURRENT_BINARY_DIR}
tjhei marked this conversation as resolved.
Show resolved Hide resolved
DESTINATION ${DEAL_II_DOCHTML_RELDIR}/doxygen
COMPONENT documentation
PATTERN CMakeFiles EXCLUDE
PATTERN cmake_install.cmake EXCLUDE
)


ELSE()

# no copy of the code gallery is available. say so. but also
Expand Down
4 changes: 4 additions & 0 deletions doc/news/changes/minor/10100917Bangerth
@@ -0,0 +1,4 @@
Fixed: Our cmake scripts forgot to install some of the files that are
part of the code gallery. This is now fixed.
<br>
(Wolfgang Bangerth, 2020/09/17)