mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-03-09 20:56:31 +00:00
24 lines
388 B
Python
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",
|
|
],
|
|
)
|