1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/doxygen.md

17 lines
373 B
Markdown
Raw Normal View History

2017-12-19 11:32:30 +08:00
# doxygen
> A documentation system for various programming languages.
2024-10-12 10:02:00 +02:00
> More information: <https://www.doxygen.nl>.
2017-12-19 11:32:30 +08:00
- Generate a default template configuration file `Doxyfile`:
2017-12-19 11:32:30 +08:00
`doxygen -g`
- Generate a template configuration file:
`doxygen -g {{path/to/config_file}}`
- Generate documentation using an existing configuration file:
`doxygen {{path/to/config_file}}`