mirror of https://github.com/jarro2783/cxxopts.git
Adding bazel build targets (#251)
Adding support for the bazel build system
This commit is contained in:
parent
15e8a74e95
commit
05ca8e1cac
|
|
@ -6,3 +6,4 @@ CMakeFiles/
|
|||
Testing/
|
||||
CTestTestfile.cmake
|
||||
cmake_install.cmake
|
||||
bazel-*
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
load("@rules_cc//cc:defs.bzl", "cc_library")
|
||||
|
||||
cc_library(
|
||||
name = "cxxopts",
|
||||
hdrs = ["include/cxxopts.hpp"],
|
||||
strip_include_prefix = "include",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
Loading…
Reference in New Issue