Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions build_scripts/build_versioned_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,15 @@ def build_docs(worktree: Path, output_dir: Path, release_name: str | None) -> No
output_dir.mkdir(parents=True, exist_ok=True)
env = os.environ.copy()

run(["doxygen", "Doxyfile"], cwd=docs_dir, env=env)
src_dir = worktree / "src"
run(["doxygen", "docs/Doxyfile"], cwd=src_dir, env=env)

sphinx_command = [
"sphinx-build",
"-b",
"html",
"-D",
"breathe_projects.rawtoaces=doxygen/xml",
"breathe_projects.rawtoaces=../doxygen/xml",
]

if release_name is not None:
Expand Down
2 changes: 1 addition & 1 deletion src/docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PROJECT_BRIEF = "RAW to ACES Utility"
PROJECT_LOGO =

# Input/Output
INPUT = ../../include/rawtoaces
INPUT = ../include/rawtoaces
OUTPUT_DIRECTORY = doxygen
RECURSIVE = YES
FILE_PATTERNS = *.h *.hpp
Expand Down
Loading