IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 8e98d20b authored by Antonio Augusto Alves Junior's avatar Antonio Augusto Alves Junior Committed by Ralf Ulrich
Browse files

Update documentation/conf.py

parent c6209b05
No related branches found
No related tags found
No related merge requests found
import sys import sys
import subprocess, os import subprocess, os
def configureDoxyfile(template_file, output_file): def configureDoxyfile(template_file, output_file, input_dir, output_dir):
with open(template_file, 'r') as file : with open(template_file, 'r') as file :
filedata = file.read() filedata = file.read()
...@@ -16,7 +16,7 @@ read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True' ...@@ -16,7 +16,7 @@ read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
if read_the_docs_build: if read_the_docs_build:
configureDoxyfile("Doxyfile.in", "Doxyfile") configureDoxyfile("Doxyfile.in", "Doxyfile", "../", "_build/workdir/doxygen")
subprocess.call('mkdir -p _build/workdir/doxygen; doxygen Doxyfile', shell=True) subprocess.call('mkdir -p _build/workdir/doxygen; doxygen Doxyfile', shell=True)
html_extra_path = ['_build/workdir/'] html_extra_path = ['_build/workdir/']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment