You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
450 B

licenses(["notice"]) # 3-Clause BSD
exports_files(["LICENSE.MIT"])
cc_library(
name = "nlohmann_json_lib",
hdrs = glob([
"include/nlohmann/**/*.hpp",
]),
copts = [
"-I external/nlohmann_json_lib",
],
visibility = ["//visibility:public"],
alwayslink = 1,
)
cc_library(
name = "nlohmann_json",
includes = ["include"],
visibility = ["//visibility:public"],
deps = ["nlohmann_json_lib"],
)