Skip to content
Snippets Groups Projects
Commit 2a0b8c79 authored by Rene Halver's avatar Rene Halver
Browse files

Merge branch 'parallel_doc_fix' into 'master'

cmake: fix parallel build of doc

See merge request !31
parents 89027883 6f391374
Branches master
No related tags found
1 merge request!31cmake: fix parallel build of doc
Pipeline #254013 passed
...@@ -37,8 +37,10 @@ set(DOXYGEN_EXAMPLE_PATH ${PROJECT_SOURCE_DIR}/example) ...@@ -37,8 +37,10 @@ set(DOXYGEN_EXAMPLE_PATH ${PROJECT_SOURCE_DIR}/example)
# configure doxygen config file # configure doxygen config file
configure_file(${DOXYFILE_IN} ${DOXYFILE_OUT} @ONLY) configure_file(${DOXYFILE_IN} ${DOXYFILE_OUT} @ONLY)
# create doxygen output directory # create doxygen output directories - to avoid parallel build issue
file(MAKE_DIRECTORY ${DOXYGEN_OUTPUT_DIR}) file(MAKE_DIRECTORY ${DOXYGEN_OUTPUT_DIR})
file(MAKE_DIRECTORY ${DOXYGEN_OUTPUT_DIR}/html)
file(MAKE_DIRECTORY ${DOXYGEN_OUTPUT_DIR}/xml)
# todo(s.schulz): Add dependency on other files (Fortran module etc.) # todo(s.schulz): Add dependency on other files (Fortran module etc.)
add_custom_command( add_custom_command(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment