mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-29 04:03:52 +00:00
Adds support for building with Bazel. If merged, I can push this to https://registry.bazel.build/ when a new release is cut :) --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Caleb Zulawski <caleb.zulawski@caci.com> Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
9 lines
228 B
Python
9 lines
228 B
Python
cc_library(
|
|
name = "cli11",
|
|
srcs = glob(["src/**/*.cpp"]),
|
|
hdrs = glob(["include/**/*.hpp"]),
|
|
local_defines = ["CLI11_COMPILE"],
|
|
strip_include_prefix = "/include",
|
|
visibility = ["//visibility:public"],
|
|
)
|