Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,8 @@ CI:
grpc:
- grpc/**/*
- src/idl_gen_grpc.cpp

wireshark:
- wireshark/**/*
- src/bfbs_gen_wireshark.cpp

2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ set(FlatBuffers_Compiler_SRCS
src/flatc_main.cpp
src/bfbs_gen.h
src/bfbs_gen_lua.h
src/bfbs_gen_wireshark.h
src/bfbs_gen_nim.h
src/bfbs_namer.h
include/codegen/idl_namer.h
Expand All @@ -194,6 +195,7 @@ set(FlatBuffers_Compiler_SRCS
src/annotated_binary_text_gen.h
src/annotated_binary_text_gen.cpp
src/bfbs_gen_lua.cpp
src/bfbs_gen_wireshark.cpp
src/bfbs_gen_nim.cpp
src/code_generators.cpp
grpc/src/compiler/schema_interface.h
Expand Down
1 change: 1 addition & 0 deletions include/flatbuffers/idl.h
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,7 @@ struct IDLOptions {
kNim = 1 << 17,
kProto = 1 << 18,
kKotlinKmp = 1 << 19,
kWireshark = 1 << 20,
kMAX
};

Expand Down
4 changes: 4 additions & 0 deletions src/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ cc_library(
"bfbs_gen_lua.h",
"bfbs_gen_nim.cpp",
"bfbs_gen_nim.h",
"bfbs_gen_wireshark.cpp",
"bfbs_gen_wireshark.h",
"bfbs_namer.h",
"binary_annotator.cpp",
"binary_annotator.h",
Expand All @@ -102,6 +104,8 @@ cc_library(
"bfbs_gen_lua.h",
"bfbs_gen_nim.cpp",
"bfbs_gen_nim.h",
"bfbs_gen_wireshark.cpp",
"bfbs_gen_wireshark.h",
"bfbs_namer.h",
"file_binary_writer.cpp",
"file_name_saving_file_manager.cpp",
Expand Down
Loading