BUILD.bazel 292 B

12345678910111213141516
  1. load("//bazel:copts.bzl", "entt_copts")
  2. cc_test(
  3. name = "lib",
  4. srcs = [
  5. "types.h",
  6. "a_module.cpp",
  7. "another_module.cpp",
  8. "lib.cpp",
  9. ],
  10. copts = entt_copts,
  11. deps = [
  12. "//:entt",
  13. "@com_google_googletest//:gtest_main",
  14. ],
  15. )