nlohmann_json.BUILD 325 B

1234567891011121314151617
  1. # Copyright The OpenTelemetry Authors
  2. # SPDX-License-Identifier: Apache-2.0
  3. licenses(["notice"]) # 3-Clause BSD
  4. exports_files(["LICENSE.MIT"])
  5. cc_library(
  6. name = "json",
  7. hdrs = glob([
  8. "include/**/*.hpp",
  9. ]),
  10. includes = ["include"],
  11. visibility = ["//visibility:public"],
  12. alwayslink = 1,
  13. )