From 1bfbd2be4c749210bf792357eb93b02863617aaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A9stor=20Subir=C3=B3n?= Date: Sun, 1 Mar 2020 05:27:16 +0100 Subject: [PATCH] Allow including yaml-cpp as system headers (#829) --- BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.bazel b/BUILD.bazel index 80795d4..b0b9016 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -8,7 +8,7 @@ cc_library( cc_library( name = "yaml-cpp", visibility = ["//visibility:public"], - strip_include_prefix = "include", + includes = ["include"], hdrs = glob(["include/**/*.h"]), srcs = glob(["src/**/*.cpp", "src/**/*.h"]), )