From 3437129f30c926e740ae5943cef27cd0b836c4be Mon Sep 17 00:00:00 2001 From: Chris Sauer Date: Tue, 14 Nov 2023 09:07:33 -0800 Subject: [PATCH] Bazel: Make include directories consistent (#311) Addresses Bazel part of https://github.com/Neargye/magic_enum/issues/310 --- BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.bazel b/BUILD.bazel index 53d6d84..f1c72f6 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -11,5 +11,5 @@ cc_library( name = "magic_enum", hdrs = glob(["include/magic_enum/*.hpp"]), copts = COPTS, - includes = ["include"], + includes = ["include/magic_enum"], )