mirror of
https://github.com/KeqingMoe/argparse.git
synced 2025-07-03 14:44:40 +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",
|
|
],
|
|
)
|