15 lines
358 B
Python
15 lines
358 B
Python
|
|
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"]),
|
||
|
|
)
|