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

..03-May-2022-

gRPC/H24-Apr-2019-3017

Benchmarks.mdH A D24-Apr-20194.8 KiB6453

Building.mdH A D24-Apr-20194.6 KiB10181

CONTRIBUTING.mdH A D24-Apr-20192.2 KiB4337

CUsage.mdH A D24-Apr-20198.1 KiB225176

Compiler.mdH A D24-Apr-20197.7 KiB204131

CppUsage.mdH A D24-Apr-201924.4 KiB567425

DartUsage.mdH A D24-Apr-20195 KiB10983

FlatBuffers.mdH A D24-Apr-20198.9 KiB179148

FlexBuffers.mdH A D24-Apr-20196.9 KiB167130

GoApi.mdH A D24-Apr-20191.2 KiB2721

GoUsage.mdH A D24-Apr-20193.7 KiB10070

Grammar.mdH A D24-Apr-20192.2 KiB7542

Internals.mdH A D24-Apr-201919.3 KiB450345

JavaCsharpUsage.mdH A D24-Apr-20196.9 KiB173132

JavaScriptUsage.mdH A D24-Apr-20194 KiB10675

LobsterUsage.mdH A D24-Apr-20193.3 KiB8660

LuaUsage.mdH A D24-Apr-20193 KiB8257

PHPUsage.mdH A D24-Apr-20193.3 KiB9067

PythonUsage.mdH A D24-Apr-20193.9 KiB10173

README_TO_GENERATE_DOCS.mdH A D24-Apr-20191.1 KiB3321

RustUsage.mdH A D24-Apr-20197.7 KiB175130

Schemas.mdH A D24-Apr-201925.9 KiB604464

Support.mdH A D24-Apr-20193.3 KiB4739

Tutorial.mdH A D24-Apr-201996 KiB3,0042,745

TypeScriptUsage.mdH A D24-Apr-20192.4 KiB6745

WhitePaper.mdH A D24-Apr-20195.6 KiB12998

doxyfileH A D24-Apr-2019100.1 KiB2,3721,849

doxygen_layout.xmlH A D24-Apr-20198.4 KiB249224

groupsH A D24-Apr-2019675 2416

style.cssH A D24-Apr-20195.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