Home | History | Annotate | only in /external/flatbuffers/docs/source
Up to higher level directory
NameDateSize
Benchmarks.md06-Dec-20174.8K
Building.md06-Dec-20172.9K
Compiler.md06-Dec-20174.9K
CONTRIBUTING.md01-Jan-19700
CppUsage.md06-Dec-201717.4K
CUsage.md06-Dec-20178.1K
doxyfile06-Dec-201799.9K
doxygen_layout.xml06-Dec-20177.8K
FlatBuffers.md06-Dec-20178.3K
FlexBuffers.md06-Dec-20176.6K
GoApi.md06-Dec-20171.2K
GoApi_generated.txt06-Dec-20174.5K
GoUsage.md06-Dec-20173.7K
Grammar.md06-Dec-20171.4K
groups06-Dec-2017576
Internals.md06-Dec-201718.9K
JavaCsharpUsage.md06-Dec-20176.9K
JavaScriptUsage.md06-Dec-20174K
PHPUsage.md06-Dec-20173.3K
PythonUsage.md06-Dec-20172.8K
README_TO_GENERATE_DOCS.md06-Dec-20171.1K
Schemas.md06-Dec-201723K
style.css06-Dec-20175.4K
Support.md06-Dec-20172.7K
Tutorial.md06-Dec-201764.3K
WhitePaper.md06-Dec-20175.6K

README_TO_GENERATE_DOCS.md

      1 ## Prerequisites
      2 
      3 To generate the docs for FlatBuffers from the source files, you
      4 will first need to install two programs.
      5 
      6 1. You will need to install `doxygen`. See
      7    [Download Doxygen](http://www.stack.nl/~dimitri/doxygen/download.html).
      8 
      9 2. You will need to install `doxypypy` to format python comments appropriately.
     10    Install it from [here](https://github.com/Feneric/doxypypy).
     11 
     12 *Note: You will need both `doxygen` and `doxypypy` to be in your
     13 [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable.*
     14 
     15 After you have both of those files installed and in your path, you need to
     16 set up the `py_filter` to invoke `doxypypy` from `doxygen`.
     17 
     18 Follow the steps
     19 [here](https://github.com/Feneric/doxypypy#invoking-doxypypy-from-doxygen).
     20 
     21 ## Generating Docs
     22 
     23 Run the following commands to generate the docs:
     24 
     25 `cd flatbuffers/docs/source`
     26 `doxygen`
     27 
     28 The output is placed in `flatbuffers/docs/html`.
     29 
     30 *Note: The Go API Reference code must be generated ahead of time. For
     31 instructions on how to regenerated this file, please read the comments
     32 in `GoApi.md`.*
     33