Skip to content

Commit

Permalink
Readthedocs fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfjlaros committed Oct 19, 2024
1 parent 12d58ac commit 07e9b99
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
9 changes: 6 additions & 3 deletions docs/.readthedocs.yaml → .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ build:
os: "ubuntu-20.04"
tools:
python: "3.9"

sphinx:
configuration: docs/conf.py
jobs:
pre_build:
- doxygen docs/Doxyfile

python:
install:
- requirements: docs/requirements.txt

sphinx:
configuration: docs/conf.py
7 changes: 4 additions & 3 deletions docs/Doxyfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
INPUT = ../src/
INPUT = src/
OUTPUT_DIRECTORY = docs/

GENERATE_HTML = NO
GENERATE_HTML = YES
GENERATE_LATEX = NO
GENERATE_XML = YES

INLINE_GROUPED_CLASSES = YES
INLINE_SIMPLE_STRUCTS = YES

EXTENSION_MAPPING = tcc=C++
FILE_PATTERNS = *.c *.cc *.h *.tcc
FILE_PATTERNS = *.c *.cc *.cpp *.h *.tcc
6 changes: 1 addition & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,8 @@
extensions = ['breathe']
breathe_projects = {'doxygen': 'xml'}
breathe_default_project = 'doxygen'
breathe_default_members = ('members')
breathe_default_members = ('members',)

master_doc = 'index'

highlight_language = 'none'
html_theme = 'sphinx_rtd_theme'


call('doxygen', shell=True)

0 comments on commit 07e9b99

Please sign in to comment.