Skip to content

Commit

Permalink
fine tune
Browse files Browse the repository at this point in the history
  • Loading branch information
yslan committed Oct 12, 2024
1 parent 113d3c0 commit 77c554c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ help:
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

livehtml:
sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
livehtml: html
SKIPDOXYGEN=1 sphinx-autobuild --no-initial --re-ignore '.*\.swp' --ignore source/doxygen "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
7 changes: 5 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))

import os
from os import makedirs, path
from datetime import date
import subprocess
Expand Down Expand Up @@ -235,5 +235,8 @@ def build_doxygen(app):


def setup(app):
app.connect("builder-inited", build_doxygen)
skipDoxygen = os.getenv("SKIPDOXYGEN")
if skipDoxygen is None or skipDoxygen==0:
app.connect("builder-inited", build_doxygen)

pass

0 comments on commit 77c554c

Please sign in to comment.