diff options
author | Dan Field <dfield@gmail.com> | 2018-05-18 14:06:15 -0400 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2018-05-18 11:06:15 -0700 |
commit | 88912640d08bab0588c5804d2990173006b57207 (patch) | |
tree | 5d451dd37682d66d40b85e4c3eeadd78e1a2a385 /CMakeLists.txt | |
parent | c43a0beff0ab4e1d5c5fe5044dfb30f24974eaff (diff) | |
download | flatbuffers-88912640d08bab0588c5804d2990173006b57207.tar.gz flatbuffers-88912640d08bab0588c5804d2990173006b57207.tar.bz2 flatbuffers-88912640d08bab0588c5804d2990173006b57207.zip |
Add [Dart] support (#4676)
* Add [Dart] support
* fix enum vectors
* Allow for opt out of string interning
* fix comment style, make interning opt in
* remove Offset<T>, prefer int
* avoid creating unnecessary vtable objects
* start work on tests - do not generate builder if struct has 0 fields - add int64
* support reading structs properly
* correctly handle reading vectors of structs, dartfmt
* support structs, fix unnecessary prepares
* fix bool customizations
* undo unintentional removal of file
* docs updates, complete tutorial, bug fix for codegen
* more documentation
* Update docs, add to doxygen file
* update package structure, add samples script/code
* rearrange sample
* Tests
* Add readme for pub
* cleanup package for pub
* update docs for renamed file
* remove custom matcher, use `closeTo` instead
* remove unintentional file
* remove unintended file checkin
* use auto, move method, cleanup
* refactor to ObjectBuilders, add Builders
* Update tests, examples
* Add files missing from previous commit
* documentation and example updates
* Update LICENSE, make dartanalyzer happy, fix minor bugs, get rid of duplicate files, publish script
* fix sample for slightly different schema
* Update pubspec.yaml
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a3388ddc..90860c35 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,6 +45,7 @@ set(FlatBuffers_Library_SRCS set(FlatBuffers_Compiler_SRCS ${FlatBuffers_Library_SRCS} src/idl_gen_cpp.cpp + src/idl_gen_dart.cpp src/idl_gen_general.cpp src/idl_gen_go.cpp src/idl_gen_js.cpp |