yaml-cpp

FORK: A YAML parser and emitter in C++
git clone https://git.neptards.moe/neptards/yaml-cpp.git
Log | Files | Refs | README | LICENSE

BUILD.bazel (348B)


      1 cc_library(
      2     name = "yaml-cpp_internal",
      3     visibility = ["//:__subpackages__"],
      4     strip_include_prefix = "src",
      5     hdrs = glob(["src/**/*.h"]),
      6 )
      7 
      8 cc_library(
      9     name = "yaml-cpp",
     10     visibility = ["//visibility:public"],
     11     includes = ["include"],
     12     hdrs = glob(["include/**/*.h"]),
     13     srcs = glob(["src/**/*.cpp", "src/**/*.h"]),
     14 )