From 6a86bcc299830e8d1dfea24324d4d7a157563910 Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Sat, 9 Sep 2023 15:48:04 -0700 Subject: [PATCH] fix: whoops forgot to submit some files --- test/entt/common/BUILD.bazel | 2 +- test/entt/entity/BUILD.bazel | 2 +- test/entt/meta/BUILD.bazel | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/entt/common/BUILD.bazel b/test/entt/common/BUILD.bazel index 63f08e163e..4cb0a14253 100644 --- a/test/entt/common/BUILD.bazel +++ b/test/entt/common/BUILD.bazel @@ -6,5 +6,5 @@ package(default_visibility = ["//:__subpackages__"]) cc_library( name = "common", copts = COPTS, - hdrs = glob(["entt/common/**/*.h", "entt/common/**/*.hpp"]), + hdrs = glob(["*.h", "*.hpp"]), ) diff --git a/test/entt/entity/BUILD.bazel b/test/entt/entity/BUILD.bazel index 764a60e687..15e8f98e65 100644 --- a/test/entt/entity/BUILD.bazel +++ b/test/entt/entity/BUILD.bazel @@ -25,7 +25,7 @@ _TESTS = [ srcs = ["{}.cpp".format(test)], copts = COPTS, deps = [ - "//:common", + "//entt/common", "@entt", "@googletest//:gtest", "@googletest//:gtest_main", diff --git a/test/entt/meta/BUILD.bazel b/test/entt/meta/BUILD.bazel index 7cac46ad69..7048650396 100644 --- a/test/entt/meta/BUILD.bazel +++ b/test/entt/meta/BUILD.bazel @@ -26,7 +26,7 @@ _TESTS = [ srcs = ["{}.cpp".format(test)], copts = COPTS, deps = [ - "//:common", + "//entt/common", "@entt", "@googletest//:gtest", "@googletest//:gtest_main",