Parcourir la source

Add chapter about documentation generation to Readme

Alexey Edelev il y a 5 ans
Parent
commit
c904a04384
1 fichiers modifiés avec 17 ajouts et 0 suppressions
  1. 17 0
      README.md

+ 17 - 0
README.md

@@ -66,3 +66,20 @@ protoc --plugin=protoc-gen-qtprotobuf=<path/to/bin>/qtprotobufgen --qtprotobuf_o
 cd <build directory>
 ctest
 ```
+## Documentation generation
+
+Project uses doxygen for documentation generation.
+
+#### For Windows additionally install:
+* [doxygen](http://www.doxygen.nl/download.html)
+* [graphviz](https://graphviz.gitlab.io/_pages/Download/Download_windows.html)
+
+
+You can generate documentation:
+
+```bash
+mkdir build
+cd build
+cmake ..
+cmake --build . --target doc
+```