ray/bazel/BUILD.rapidjson
mwtian 26fd10c9e8
[CI] Add clang-tidy to lint (#18124)
* clang-tidy

* fix

* fix script

* test clang compiler

* fix clang-tidy rules

* Fix windows and other issues.

* Fix

* Improve information when running check-git-clang-tidy-output.sh on different OS
2021-09-09 00:41:53 -07:00

22 lines
424 B
Text

licenses(["notice"])
package(default_visibility = ["//visibility:public"])
filegroup(
name = "license",
srcs = ["license.txt"],
)
cc_library(
name = "rapidjson",
hdrs = glob([
"include/rapidjson/*.h",
"include/rapidjson/*/*.h",
]),
copts = [
"-Wno-non-virtual-dtor",
"-Wno-unused-variable",
"-Wno-implicit-fallthrough",
],
includes = ["include"],
)