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 (262B)


      1 cc_test(
      2     name = "test",
      3     srcs = glob([
      4         "*.cpp",
      5         "*.h",
      6         "integrations/*.cpp",
      7         "node/*.cpp",
      8     ]),
      9     deps = [
     10         "//:yaml-cpp",
     11         "//:yaml-cpp_internal",
     12         "@com_google_googletest//:gtest_main",
     13     ],
     14 )