mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
23 lines
424 B
Text
23 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"],
|
||
|
)
|