aboutsummaryrefslogtreecommitdiff
path: root/doc/doc_extract.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/doc_extract.py')
-rwxr-xr-xdoc/doc_extract.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/doc_extract.py b/doc/doc_extract.py
index ce192cb..1ce7dc9 100755
--- a/doc/doc_extract.py
+++ b/doc/doc_extract.py
@@ -69,9 +69,11 @@ def main():
amalgam_base = os.path.dirname(script_dir)
amalgam_includes = os.path.join(amalgam_base, "include")
amalgam_sources = os.path.join(amalgam_base, "src")
+ amalgam_executor_sources = os.path.join(amalgam_base, "executor")
source_files = get_source_files_recursive(amalgam_includes)
source_files += get_source_files_recursive(amalgam_sources)
+ source_files += get_source_files_recursive(amalgam_executor_sources)
doc_data = []
for filepath in source_files:
docs = extract_docs(filepath)