Browse Source

Add chapter about documentation generation to Readme

Alexey Edelev 5 years ago
parent
commit
c904a04384
1 changed files with 17 additions and 0 deletions
  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
+```