Files
cpp-project-template/third_party/prometheus/core/tests/BUILD.bazel

14 lines
242 B
Python
Raw Normal View History

2025-08-22 18:22:57 +08:00
cc_test(
name = "unit",
srcs = glob([
"*.cc",
"*.h",
]),
copts = ["-Iexternal/googletest/include"],
linkstatic = True,
deps = [
"//core",
"@com_google_googletest//:gtest_main",
],
)