[go: up one dir, main page]

File: BUILD.bazel

package info (click to toggle)
cxxopts 3.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 968 kB
  • sloc: cpp: 17,274; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
load("@rules_cc//cc:defs.bzl", "cc_library")

cc_library(
    name = "cxxopts",
    hdrs = ["include/cxxopts.hpp"],
    strip_include_prefix = "include",
    visibility = ["//visibility:public"],
)

load("@rules_fuzzing//fuzzing:cc_defs.bzl", "cc_fuzz_test")

cc_fuzz_test(
    name = "cxxopts_fuzz_test",
    srcs = ["test/fuzz.cpp"],
    deps = [":cxxopts"],
)