Commit 05ca8e1cacb5db9152411ad8df1d2d61f0fe82aa

Authored by silvergasp
Committed by GitHub
1 parent 15e8a74e

Adding bazel build targets (#251)

Adding support for the bazel build system
.gitignore
... ... @@ -6,3 +6,4 @@ CMakeFiles/
6 6 Testing/
7 7 CTestTestfile.cmake
8 8 cmake_install.cmake
  9 +bazel-*
9 10 \ No newline at end of file
... ...
BUILD 0 → 100644
  1 +load("@rules_cc//cc:defs.bzl", "cc_library")
  2 +
  3 +cc_library(
  4 + name = "cxxopts",
  5 + hdrs = ["include/cxxopts.hpp"],
  6 + strip_include_prefix = "include",
  7 + visibility = ["//visibility:public"],
  8 +)
... ...
WORKSPACE 0 → 100644