diff --git a/android/jni/include.mk b/android/jni/include.mk index 45edf9d1d..2acae06b7 100644 --- a/android/jni/include.mk +++ b/android/jni/include.mk @@ -66,7 +66,7 @@ FLATBUFFERS_FLATC_PATH?=$(FLATBUFFERS_CMAKELISTS_DIR) FLATBUFFERS_FLATC := $(FLATBUFFERS_FLATC_PATH)/Debug/flatc endif -FLATBUFFERS_FLATC_ARGS?=--gen-includes +FLATBUFFERS_FLATC_ARGS?= # Search for cmake. CMAKE_ROOT := $(realpath $(LOCAL_PATH)/../../../../../../prebuilts/cmake) diff --git a/docs/html/md__compiler.html b/docs/html/md__compiler.html index 8db385dc0..a95d73aef 100644 --- a/docs/html/md__compiler.html +++ b/docs/html/md__compiler.html @@ -75,7 +75,7 @@ $(document).ready(function(){initNavTree('md__compiler.html','');});
--strict-json
: Require & generate strict JSON (field names are enclosed in quotes, no trailing commas in tables/vectors). By default, no quotes are required/generated, and trailing commas are allowed.--defaults-json
: Output fields whose value is equal to the default value when writing JSON text.--no-prefix
: Don't prefix enum values in generated C++ by their enum type.--gen-includes
: (deprecated), instead use:--gen-includes
: (deprecated), this is the default behavior. If the original behavior is required (no include statements) use --no-includes.
--no-includes
: Don't generate include statements for included schemas the generated file depends on (C++).--gen-mutable
: Generate additional non-const accessors for mutating FlatBuffers in-place.--gen-onefile
: Generate single output file (useful for C#)