BUILD.rapidjson 424 B

12345678910111213141516171819202122
  1. licenses(["notice"])
  2. package(default_visibility = ["//visibility:public"])
  3. filegroup(
  4. name = "license",
  5. srcs = ["license.txt"],
  6. )
  7. cc_library(
  8. name = "rapidjson",
  9. hdrs = glob([
  10. "include/rapidjson/*.h",
  11. "include/rapidjson/*/*.h",
  12. ]),
  13. copts = [
  14. "-Wno-non-virtual-dtor",
  15. "-Wno-unused-variable",
  16. "-Wno-implicit-fallthrough",
  17. ],
  18. includes = ["include"],
  19. )