Skip to content

Commit

Permalink
* Adding Java doc generation to Read The Docs conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jredmondson committed Jun 14, 2018
1 parent 671ec89 commit 90ebf35
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
release = u'3.1.10'

subprocess.call('perl get_version.pl; doxygen Doxyfile_MADARA.dxy', shell=True)
subprocess.call('javadoc -version -d java -sourcepath ../port/java/src -subpackages com.madara', shell=True)
subprocess.call('mv madara/html madara/cpp', shell=True)
subprocess.call('mv java madara/java', shell=True)


# -- General configuration ---------------------------------------------------

Expand Down Expand Up @@ -68,7 +72,7 @@
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = [u'_build', 'Thumbs.db', '.DS_Store']
html_extra_path = ['madara/html']
html_extra_path = ['madara']

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
Expand Down

0 comments on commit 90ebf35

Please sign in to comment.