add :runtime_cc target (#4994)

This commit is contained in:
iceboy
2018-10-15 12:18:15 -07:00
committed by Wouter van Oortmerssen
parent 35f0b41fed
commit 241e87d143

12
BUILD
View File

@@ -104,6 +104,18 @@ cc_binary(
],
)
cc_library(
name = "runtime_cc",
hdrs = [
"include/flatbuffers/base.h",
"include/flatbuffers/flatbuffers.h",
"include/flatbuffers/stl_emulation.h",
"include/flatbuffers/util.h",
],
includes = ["include/"],
linkstatic = 1,
)
# Test binary.
cc_test(
name = "flatbuffers_test",