diff options
author | iceboy <me@iceboy.org> | 2018-10-15 12:18:15 -0700 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2018-10-15 12:18:15 -0700 |
commit | 241e87d143516f1d885c5da8bb633a805833a31d (patch) | |
tree | 4fc1c88188a413f48879a96a73d99bc4eca11c0b /BUILD | |
parent | 35f0b41fedf445aeb1b367ec6c7daf29f03b8e8e (diff) | |
download | flatbuffers-241e87d143516f1d885c5da8bb633a805833a31d.tar.gz flatbuffers-241e87d143516f1d885c5da8bb633a805833a31d.tar.bz2 flatbuffers-241e87d143516f1d885c5da8bb633a805833a31d.zip |
add :runtime_cc target (#4994)
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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", |