-
Hello, I would like to know how to build the HTML documentation? |
Beta Was this translation helpful? Give feedback.
Answered by
chris2511
Sep 16, 2024
Replies: 1 comment 1 reply
-
XCA uses sphinx. In the xca directory the target "sphinx-html" builds the doc: Internally, the documentation in "doc/rst" is used and the documentation of the commandline options, the export formats The sphinx-build command is called here Line 93 in cb1f025 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
marek22k
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
XCA uses sphinx.
In the xca directory the target "sphinx-html" builds the doc:
cmake -B build && cmake --build build -t sphinx-html
Internally, the documentation in "doc/rst" is used and the documentation of the commandline options, the export formats
and SQL Schema are automatically generated from the sources.
The sphinx-build command is called here
xca/doc/CMakeLists.txt
Line 93 in cb1f025