File: BUILD.bazel

package info (click to toggle)
prometheus-cpp 1.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 792 kB
  • sloc: cpp: 3,596; sh: 37; makefile: 12
file content (13 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
cc_test(
    name = "unit",
    srcs = glob([
        "*.cc",
        "*.h",
    ]),
    copts = ["-Iexternal/googletest/include"],
    linkstatic = True,
    deps = [
        "//core",
        "@com_google_googletest//:gtest_main",
    ],
)