Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
loadbalancing
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SLMS
loadbalancing
Merge requests
!31
cmake: fix parallel build of doc
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
cmake: fix parallel build of doc
parallel_doc_fix
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
cmake: fix parallel build of doc
Christoph Junghans
requested to merge
parallel_doc_fix
into
master
5 months ago
Overview
0
Commits
1
Pipelines
1
Changes
1
We found a race condition during parallel build (
-j48
) on Fedora for the docs.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
6f391374
1 commit,
5 months ago
1 file
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
docs/CMakeLists.txt
+
3
−
1
View file @ 6f391374
Edit in single-file editor
Open in Web IDE
Show full file
@@ -37,8 +37,10 @@ set(DOXYGEN_EXAMPLE_PATH ${PROJECT_SOURCE_DIR}/example)
# configure doxygen config file
configure_file
(
${
DOXYFILE_IN
}
${
DOXYFILE_OUT
}
@ONLY
)
# create doxygen output director
y
# create doxygen output director
ies - to avoid parallel build issue
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.)
add_custom_command
(
Loading