diff options
| author | kat <kat@vector35.com> | 2023-05-26 10:40:40 -0400 |
|---|---|---|
| committer | kat <kat@vector35.com> | 2023-05-26 11:07:22 -0400 |
| commit | a05596610bbbe9274d9300882fbbbfb41eec107d (patch) | |
| tree | feb0e15a6c908bd1a65e0d3dd5226bd44782534d /api-docs/cppdocs/build_min_docs.py | |
| parent | f8ba38091323f7e3402bd73bb1e53ac358696dd0 (diff) | |
Add a thread safety indicator for C++ docs
Diffstat (limited to 'api-docs/cppdocs/build_min_docs.py')
| -rw-r--r-- | api-docs/cppdocs/build_min_docs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/api-docs/cppdocs/build_min_docs.py b/api-docs/cppdocs/build_min_docs.py index 92fde5fc..00a0767b 100644 --- a/api-docs/cppdocs/build_min_docs.py +++ b/api-docs/cppdocs/build_min_docs.py @@ -148,6 +148,8 @@ def build_doxygen(): stat, out, err = system_with_output("doxygen USEBUILDMINDOCS") print(f"Built Doxygen with status code {stat}") print("Output dir is ./html/") + stat, out, err = system_with_output("cp _static/img/* html/") + print(f"Copied images with status code {stat}") def main(): |
