From a05596610bbbe9274d9300882fbbbfb41eec107d Mon Sep 17 00:00:00 2001 From: kat Date: Fri, 26 May 2023 10:40:40 -0400 Subject: Add a thread safety indicator for C++ docs --- api-docs/cppdocs/build_min_docs.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'api-docs/cppdocs/build_min_docs.py') 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(): -- cgit v1.3.1