BUILD.bazel 358 Bytes
Newer Older
Ezekiel Warren's avatar
Ezekiel Warren committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cc_library(
    name = "yaml-cpp_internal",
    visibility = ["//:__subpackages__"],
    strip_include_prefix = "src",
    hdrs = glob(["src/**/*.h"]),
)

cc_library(
    name = "yaml-cpp",
    visibility = ["//visibility:public"],
    strip_include_prefix = "include",
    hdrs = glob(["include/**/*.h"]),
    srcs = glob(["src/**/*.cpp", "src/**/*.h"]),
)