Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KiT-RT
KiT-RT
Commits
a23399a7
Commit
a23399a7
authored
Jan 15, 2021
by
jannick.wolters
Browse files
next try on fixing doxygen
parent
59a75b23
Changes
1
Hide whitespace changes
Inline
Side-by-side
doc/conf.py
View file @
a23399a7
...
...
@@ -74,10 +74,14 @@ breathe_default_project = "KiT-RT"
read_the_docs_build
=
os
.
environ
.
get
(
'READTHEDOCS'
,
None
)
==
'True'
if
read_the_docs_build
:
inputDir
=
'../code/build/'
outputDir
=
'../code/build/debug/docs/doxygen'
if
not
os
.
path
.
exists
(
outputDir
):
os
.
makedirs
(
outputDir
)
with
open
(
"Doxyfile.in"
,
"rt"
)
as
fin
:
with
open
(
"Doxyfile"
,
"wt"
)
as
fout
:
for
line
in
fin
:
line
=
line
.
replace
(
'@DOXYGEN_OUTPUT_DIR@'
,
'doxygen'
)
line
=
line
.
replace
(
'@DOXYGEN_INPUT_DIR@'
,
'../code/'
)
line
=
line
.
replace
(
'@DOXYGEN_OUTPUT_DIR@'
,
outputDir
)
line
=
line
.
replace
(
'@DOXYGEN_INPUT_DIR@'
,
inputDir
)
fout
.
write
(
line
)
subprocess
.
call
(
'doxygen'
,
shell
=
True
)
jannick.wolters
@jm2154
mentioned in commit
f13a1365
·
Apr 30, 2021
mentioned in commit
f13a1365
mentioned in commit f13a1365d758c7e62ff6b056ca2efa0e845e8aea
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment