17 lines
292 B
Python
17 lines
292 B
Python
load("//bazel:copts.bzl", "entt_copts")
|
|
|
|
cc_test(
|
|
name = "lib",
|
|
srcs = [
|
|
"types.h",
|
|
"a_module.cpp",
|
|
"another_module.cpp",
|
|
"lib.cpp",
|
|
],
|
|
copts = entt_copts,
|
|
deps = [
|
|
"//:entt",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|