mirror of
https://github.com/loot/yaml-cpp.git
synced 2026-07-27 14:13:42 -07:00
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"]),
|
||
|
|
)
|