From 04e33a2d68fc4d114886f2b67d8a6074f0f2d2a4 Mon Sep 17 00:00:00 2001 From: nsubiron Date: Fri, 28 Feb 2020 21:32:10 +0100 Subject: [PATCH] Allow including yaml-cpp as system headers --- 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"]), )