mirror of
https://github.com/tristanpenman/valijson.git
synced 2025-01-07 09:48:05 +01:00
15 lines
348 B
Python
15 lines
348 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"],
|
|
includes = ["include"],
|
|
hdrs = glob(["include/**/*.h"]),
|
|
srcs = glob(["src/**/*.cpp", "src/**/*.h"]),
|
|
)
|