Remove generated .h files from repo

This commit is contained in:
derekbailey
2025-12-21 22:07:34 +00:00
parent 8914d06ab7
commit 8a37f22f47
37 changed files with 293 additions and 10244 deletions

View File

@@ -0,0 +1,29 @@
load("//:build_defs.bzl", "flatbuffer_cc_library")
package(default_visibility = ["//visibility:public"])
flatbuffer_cc_library(
name = "v1_cc_fbs",
srcs = ["v1.fbs"],
filename_suffix = ".fbs",
flatc_args = [
"--gen-compare",
"--gen-mutable",
"--gen-object-api",
"--reflect-names",
"--filename-suffix .fbs",
],
)
flatbuffer_cc_library(
name = "v2_cc_fbs",
srcs = ["v2.fbs"],
filename_suffix = ".fbs",
flatc_args = [
"--gen-compare",
"--gen-mutable",
"--gen-object-api",
"--reflect-names",
"--filename-suffix .fbs",
],
)