21 lines
434 B
Python
21 lines
434 B
Python
cc_library(
|
|
name = "yaml-cpp_internal",
|
|
visibility = ["//:__subpackages__"],
|
|
strip_include_prefix = "src",
|
|
copts = [
|
|
"-std=c++11",
|
|
],
|
|
hdrs = glob(["src/**/*.h"]),
|
|
)
|
|
|
|
cc_library(
|
|
name = "yaml-cpp",
|
|
visibility = ["//visibility:public"],
|
|
includes = ["include"],
|
|
copts = [
|
|
"-std=c++11",
|
|
],
|
|
hdrs = glob(["include/**/*.h"]),
|
|
srcs = glob(["src/**/*.cpp", "src/**/*.h"]),
|
|
)
|