Skip to content

Commit

Permalink
comment out custom changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rw1nkler committed Dec 1, 2020
1 parent 7848dd5 commit 8725507
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions source/conf.py
Expand Up @@ -339,37 +339,37 @@ def print_stats():

### BREATHE ###

from pathlib import Path
import subprocess
# from pathlib import Path
# import subprocess

# For building doxygen only on Read the Docs see:
# https://breathe.readthedocs.io/en/latest/readthedocs.html
# # For building doxygen only on Read the Docs see:
# # https://breathe.readthedocs.io/en/latest/readthedocs.html

def doxygen_generate(log_file=None):
doxygen_cmake_build_dir = Path('../doxygen/build')
if not doxygen_cmake_build_dir.exists():
doxygen_cmake_build_dir.mkdir(parents=True, exist_ok=True)
cmd = "cd " + str(doxygen_cmake_build_dir) + "&& cmake .. && make"
else:
cmd = "cd " + str(doxygen_cmake_build_dir) + "&& make"
# def doxygen_generate(log_file=None):
# doxygen_cmake_build_dir = Path('../doxygen/build')
# if not doxygen_cmake_build_dir.exists():
# doxygen_cmake_build_dir.mkdir(parents=True, exist_ok=True)
# cmd = "cd " + str(doxygen_cmake_build_dir) + "&& cmake .. && make"
# else:
# cmd = "cd " + str(doxygen_cmake_build_dir) + "&& make"

subprocess.call(cmd, shell=True, stderr=log_file, stdout=log_file)
# subprocess.call(cmd, shell=True, stderr=log_file, stdout=log_file)

doxygen_generate()
# doxygen_generate()

breathe_projects = {
"prjxray" : "../build/doxygen/prjxray/xml",
}
# breathe_projects = {
# "prjxray" : "../build/doxygen/prjxray/xml",
# }

### SYMBOLATOR ###
# ### SYMBOLATOR ###

symbolator_cmd_args = ['--transparent']
symbolator_output_format = 'svg'
# symbolator_cmd_args = ['--transparent']
# symbolator_output_format = 'svg'

### PRJXRAY FUZZERS AND MINITESTS LINKS
# ### PRJXRAY FUZZERS AND MINITESTS LINKS

def prjxray_fuzzers_and_minitests_links():
cmd = "cd prjxray/docs && make links"
subprocess.call(cmd, shell=True)
# def prjxray_fuzzers_and_minitests_links():
# cmd = "cd prjxray/docs && make links"
# subprocess.call(cmd, shell=True)

prjxray_fuzzers_and_minitests_links()
# prjxray_fuzzers_and_minitests_links()

0 comments on commit 8725507

Please sign in to comment.