7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-03-09 20:56:31 +00:00
kicad/thirdparty/argparse/test/BUILD.bazel
2025-03-04 18:31:53 -05: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",
],
)