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

..--

gRPC/22-Nov-2023-3017

Benchmarks.mdD22-Nov-20234.8 KiB6453

Building.mdD23-Nov-20234.6 KiB10181

CONTRIBUTING.mdD22-Nov-20232.2 KiB4337

CUsage.mdD22-Nov-20238.1 KiB225176

Compiler.mdD23-Nov-20237.4 KiB198126

CppUsage.mdD23-Nov-202323.6 KiB557415

DartUsage.mdD23-Nov-20235 KiB10983

FlatBuffers.mdD23-Nov-20238.9 KiB179148

FlexBuffers.mdD22-Nov-20236.9 KiB167130

GoApi.mdD22-Nov-20231.2 KiB2721

GoApi_generated.txtD22-Nov-20234.5 KiB12697

GoUsage.mdD22-Nov-20233.7 KiB10070

Grammar.mdD23-Nov-20232.2 KiB7542

Internals.mdD23-Nov-202319.3 KiB450345

JavaCsharpUsage.mdD22-Nov-20236.9 KiB173132

JavaScriptUsage.mdD22-Nov-20234 KiB10675

LobsterUsage.mdD23-Nov-20233.3 KiB8660

LuaUsage.mdD23-Nov-20233 KiB8257

PHPUsage.mdD22-Nov-20233.3 KiB9067

PythonUsage.mdD22-Nov-20233.9 KiB10173

README_TO_GENERATE_DOCS.mdD22-Nov-20231.1 KiB3321

RustUsage.mdD23-Nov-20237.6 KiB174129

Schemas.mdD23-Nov-202325.8 KiB604464

Support.mdD23-Nov-20233.3 KiB4739

Tutorial.mdD23-Nov-202395.9 KiB3,0022,743

TypeScriptUsage.mdD23-Nov-20232.4 KiB6745

WhitePaper.mdD22-Nov-20235.6 KiB12998

doxyfileD23-Nov-2023100.1 KiB2,3721,849

doxygen_layout.xmlD23-Nov-20238.4 KiB249224

groupsD23-Nov-2023675 2416

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