Files
cpp-project-template/third_party/prometheus/pull/BUILD.bazel

30 lines
637 B
Python
Raw Normal View History

2025-08-22 18:22:57 +08:00
load("//bazel:export_header.bzl", "generate_dummy_export_header")
generate_dummy_export_header(
name = "export_header",
basename = "PROMETHEUS_CPP_PULL",
header = "include/prometheus/detail/pull_export.h",
)
cc_library(
name = "pull",
srcs = glob([
"src/**/*.cc",
"src/**/*.h",
]),
hdrs = glob(
["include/**/*.h"],
) + [":export_header"],
local_defines = [
"HAVE_ZLIB",
],
strip_include_prefix = "include",
visibility = ["//visibility:public"],
deps = [
"//core",
"//util",
"@civetweb//:civetserver",
"@zlib",
],
)