Skip to content

Commit

Permalink
Attempting to run doxygen on read the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-bray committed Sep 15, 2017
1 parent d2b5184 commit 997e573
Show file tree
Hide file tree
Showing 5 changed files with 265 additions and 122 deletions.
7 changes: 6 additions & 1 deletion doc/manuals/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,14 @@
]

# Breathe support - need to make directory name more flexible
breathe_projects = { "kwiver": "../doxygen" }
breathe_projects = { "kwiver": "./_build/xml" }
breathe_default_project = "kwiver"

import subprocess, os
read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
if read_the_docs_build:
subprocess.call('cd ../doxygen; doxygen', shell=True)

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down
14 changes: 0 additions & 14 deletions doc/manuals/doxy-bridge.rst

This file was deleted.

0 comments on commit 997e573

Please sign in to comment.