• Home
  • History
  • Annotate
Name
Date
Size
#Lines
LOC

..--

Benchmarks.mdD22-Nov-20234.8 KiB6453

Building.mdD22-Nov-20232.9 KiB6852

CONTRIBUTING.mdD01-Jan-19700

CUsage.mdD22-Nov-20238.1 KiB225176

Compiler.mdD22-Nov-20234.9 KiB12887

CppUsage.mdD22-Nov-202317.4 KiB406304

FlatBuffers.mdD22-Nov-20238.3 KiB169138

FlexBuffers.mdD22-Nov-20236.6 KiB157125

GoApi.mdD22-Nov-20231.2 KiB2721

GoApi_generated.txtD22-Nov-20234.5 KiB12697

GoUsage.mdD22-Nov-20233.7 KiB10070

Grammar.mdD22-Nov-20231.4 KiB4928

Internals.mdD22-Nov-202318.9 KiB440339

JavaCsharpUsage.mdD22-Nov-20236.9 KiB172131

JavaScriptUsage.mdD22-Nov-20234 KiB10675

PHPUsage.mdD22-Nov-20233.3 KiB9067

PythonUsage.mdD22-Nov-20232.8 KiB7452

README_TO_GENERATE_DOCS.mdD22-Nov-20231.1 KiB3321

Schemas.mdD22-Nov-202323 KiB546415

Support.mdD22-Nov-20232.7 KiB4537

Tutorial.mdD22-Nov-202364.3 KiB1,9441,745

WhitePaper.mdD22-Nov-20235.6 KiB12998

doxyfileD22-Nov-202399.9 KiB2,3651,842

doxygen_layout.xmlD22-Nov-20237.8 KiB235210

groupsD22-Nov-2023576 2114

style.cssD22-Nov-20235.4 KiB397324

README_TO_GENERATE_DOCS.md

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