mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-08 22:20:56 +00:00
13 lines
438 B
Python
13 lines
438 B
Python
load("@rules_cc//cc:defs.bzl", "cc_test")
|
|
|
|
# This test doesn't actually make use of the flatbuffers library. It's just
|
|
# here to make sure we can link the library properly when it comes from an
|
|
# external repository. You're welcome to expand this test to do more.
|
|
cc_test(
|
|
name = "pulls_in_flatbuffers_test",
|
|
srcs = ["pulls_in_flatbuffers_test.cpp"],
|
|
deps = [
|
|
"@com_github_google_flatbuffers//:flatbuffers",
|
|
],
|
|
)
|