Skip to content

Commit 12e4b9b

Browse files
committed
Fix doxygen build
1 parent 0551c92 commit 12e4b9b

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

doc/Makefile.in

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,15 @@ help:
5252
clean:
5353
rm -rf $(BUILDDIR)/*
5454

55+
.PHONY: doxygen
56+
doxygen:
57+
cd doxygen && doxygen Doxyfile
58+
59+
doxygen/xml/index.xml:
60+
$(MAKE) doxygen
61+
5562
.PHONY: html
56-
html:
63+
html: doxygen/xml/index.xml
5764
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
5865
@echo
5966
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."

doc/conf.py.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ extensions = [
2525
'breathe'
2626
]
2727

28-
# Commented temporarely
29-
#breathe_projects = { "apidoc" : "doxygen/xml/" }
28+
breathe_projects = { "apidoc" : "doxygen/xml/" }
3029

3130
breathe_default_project = "apidoc"
3231

0 commit comments

Comments
 (0)