pugixml/BUILD.bazel

14 lines
292 B
Python
Raw Normal View History

2024-01-07 15:42:22 +03:00
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "pugixml",
srcs = [
"src/pugiconfig.hpp",
"src/pugixml.cpp",
],
hdrs = ["src/pugixml.hpp"],
includes = ["src/"],
strip_include_prefix = "src",
visibility = ["//visibility:public"],
)