Adding bazel build targets (#251)
Adding support for the bazel build system
This commit is contained in:
parent
15e8a74e95
commit
05ca8e1cac
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,3 +6,4 @@ CMakeFiles/
|
||||
Testing/
|
||||
CTestTestfile.cmake
|
||||
cmake_install.cmake
|
||||
bazel-*
|
8
BUILD
Normal file
8
BUILD
Normal file
@ -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
Block a user