Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KiT-RT
KiT-RT
Commits
2275e979
Commit
2275e979
authored
Jan 16, 2021
by
jannick.wolters
Browse files
removed extensions
Former-commit-id:
34eea929
parent
c2efa919
Changes
4
Hide whitespace changes
Inline
Side-by-side
.readthedocs.yml
View file @
2275e979
...
...
@@ -11,3 +11,5 @@ sphinx:
submodules
:
exclude
:
all
formats
:
[]
code/CMakeLists.txt
View file @
2275e979
...
...
@@ -138,7 +138,7 @@ if( build_doc )
set
(
SPHINX_BUILD
${
CMAKE_CURRENT_BINARY_DIR
}
/docs/sphinx
)
set
(
SPHINX_INDEX_FILE
${
SPHINX_BUILD
}
/index.html
)
add_custom_command
(
OUTPUT
${
SPHINX_INDEX_FILE
}
COMMAND
${
SPHINX_EXECUTABLE
}
-b html -Dbreathe_projects.CatCutifier=
${
DOXYGEN_OUTPUT_DIR
}
/xml
${
SPHINX_SOURCE
}
${
SPHINX_BUILD
}
COMMAND
${
SPHINX_EXECUTABLE
}
${
SPHINX_SOURCE
}
${
SPHINX_BUILD
}
WORKING_DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
DEPENDS
${
CMAKE_CURRENT_SOURCE_DIR
}
/../doc/index.rst
${
DOXYGEN_INDEX_FILE
}
MAIN_DEPENDENCY
${
SPHINX_SOURCE
}
/conf.py
...
...
doc/Doxyfile.in
View file @
2275e979
...
...
@@ -2239,7 +2239,7 @@ EXTERNAL_PAGES = YES
# powerful graphs.
# The default value is: YES.
CLASS_DIAGRAMS =
NO
CLASS_DIAGRAMS =
YES
# You can include diagrams made with dia in doxygen documentation. Doxygen will
# then run dia to produce the diagram and insert it in the documentation. The
...
...
doc/conf.py
View file @
2275e979
...
...
@@ -9,11 +9,6 @@ release = 'v0.1'
extensions
=
[
'sphinx.ext.autodoc'
,
'sphinx.ext.napoleon'
,
'sphinx.ext.autosummary'
,
'sphinx.ext.intersphinx'
,
'sphinx.ext.viewcode'
,
'breathe'
,
'sphinx_rtd_theme'
]
...
...
@@ -33,7 +28,7 @@ def setup(app):
app
.
add_css_file
(
'theme_overrides.css'
)
breathe_projects
=
{
"KiT-RT"
:
"../code/build/debug/docs/doxygen/xml
/
"
,
"KiT-RT"
:
"../code/build/debug/docs/doxygen/xml"
,
}
breathe_default_project
=
"KiT-RT"
...
...
@@ -48,6 +43,8 @@ if read_the_docs_build:
with
open
(
"Doxyfile"
,
"wt"
)
as
fout
:
for
line
in
fin
:
line
=
line
.
replace
(
'GENERATE_HTML = YES'
,
'GENERATE_HTML = NO'
)
line
=
line
.
replace
(
'SEARCH_INCLUDES = YES'
,
'SEARCH_INCLUDES = NO'
)
line
=
line
.
replace
(
'CLASS_DIAGRAMS = YES'
,
'CLASS_DIAGRAMS = NO'
)
line
=
line
.
replace
(
'@DOXYGEN_OUTPUT_DIR@'
,
outputDir
)
line
=
line
.
replace
(
'@DOXYGEN_INPUT_DIR@'
,
inputDir
)
fout
.
write
(
line
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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