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

WORKSPACE (600B)


      1 workspace(name = "com_google_googletest")
      2 
      3 load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
      4 
      5 # Abseil
      6 http_archive(
      7      name = "com_google_absl",
      8      urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"],
      9      strip_prefix = "abseil-cpp-master",
     10 )
     11 
     12 http_archive(
     13     name = "rules_cc",
     14     strip_prefix = "rules_cc-master",
     15     urls = ["https://github.com/bazelbuild/rules_cc/archive/master.zip"],
     16 )
     17 
     18 http_archive(
     19     name = "rules_python",
     20     strip_prefix = "rules_python-master",
     21     urls = ["https://github.com/bazelbuild/rules_python/archive/master.zip"],
     22 )
     23