• Home
Name Date Size #Lines LOC

..--

Benchmarks.mdD03-May-20244.8 KiB6453

Building.mdD03-May-20242.9 KiB6852

CONTRIBUTING.mdD01-Jan-19700

CUsage.mdD03-May-20248.1 KiB225176

Compiler.mdD03-May-20244.9 KiB12887

CppUsage.mdD03-May-202417.4 KiB406304

FlatBuffers.mdD03-May-20248.3 KiB169138

FlexBuffers.mdD03-May-20246.6 KiB157125

GoApi.mdD03-May-20241.2 KiB2721

GoApi_generated.txtD03-May-20244.5 KiB12697

GoUsage.mdD03-May-20243.7 KiB10070

Grammar.mdD03-May-20241.4 KiB4928

Internals.mdD03-May-202418.9 KiB440339

JavaCsharpUsage.mdD03-May-20246.9 KiB172131

JavaScriptUsage.mdD03-May-20244 KiB10675

PHPUsage.mdD03-May-20243.3 KiB9067

PythonUsage.mdD03-May-20242.8 KiB7452

README_TO_GENERATE_DOCS.mdD03-May-20241.1 KiB3321

Schemas.mdD03-May-202423 KiB546415

Support.mdD03-May-20242.7 KiB4537

Tutorial.mdD03-May-202464.3 KiB1,9441,745

WhitePaper.mdD03-May-20245.6 KiB12998

doxyfileD03-May-202499.9 KiB2,3651,842

doxygen_layout.xmlD03-May-20247.8 KiB235210

groupsD03-May-2024576 2114

style.cssD03-May-20245.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