File: BUILD.bazel

package info (click to toggle)
libargparse 3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 896 kB
  • sloc: cpp: 11,319; python: 8; makefile: 4; sh: 3
file content (23 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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",
    ],
)