mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00

* 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
22 lines
424 B
Text
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"],
|
|
)
|