argparse/test/BUILD.bazel
2024-05-05 15:37:45 +08:00

24 lines
388 B
Python

cc_library(
name = "doctest",
srcs = [
"main.cpp",
],
hdrs = ["doctest.hpp"],
includes = ["."],
local_defines = [
"DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN",
],
)
cc_test(
name = "test",
srcs = glob(["test_*.cpp"]) + [
"test_utility.hpp",
],
includes = ["."],
deps = [
":doctest",
"//:argparse",
],
)