From e6434ff2948f725ef68304195e2aa80ab9dc041a Mon Sep 17 00:00:00 2001 From: yicm Date: Thu, 24 Sep 2020 12:25:15 +0800 Subject: [PATCH] docs: update --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0c5269881..e13de759f 100644 --- a/README.md +++ b/README.md @@ -46,13 +46,13 @@ cmake [-G generator] [-DYAML_BUILD_SHARED_LIBS=ON|OFF] .. ## Bazel -## Build +### Build ```bash $ bazel build :yaml-cpp ``` -## Dependency +### External Dependency ```python load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") @@ -61,9 +61,8 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") # ---------------------------------------------------------------------- git_repository( name = "yaml_parser", - remote = "https://github.com/jbeder/yaml-cpp.git", - #commit = "98acc5a", - #tag = "", + remote = "https://github.com/yicm/yaml-cpp.git", + commit = "c5d1fcf", ) ```