1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-09 23:34:23 +00:00

Bazel: Make include directories consistent (#311)

Addresses Bazel part of https://github.com/Neargye/magic_enum/issues/310
This commit is contained in:
Chris Sauer 2023-11-14 09:07:33 -08:00 committed by GitHub
parent d52a0c1c18
commit 3437129f30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,5 +11,5 @@ cc_library(
name = "magic_enum", name = "magic_enum",
hdrs = glob(["include/magic_enum/*.hpp"]), hdrs = glob(["include/magic_enum/*.hpp"]),
copts = COPTS, copts = COPTS,
includes = ["include"], includes = ["include/magic_enum"],
) )