blob: 0c3c5b3a5389ae838b4f1c8efef08afa9c57d963 [file] [log] [blame]
# JSON for Modern C++ https://github.com/nlohmann/json
#
# This file is not directly needed anymore, but left
# here for now for projects still using a WORKSPACE
# reference.
#
# Should probably be removed around mid 2025.
licenses(["unencumbered"]) # Public Domain or MIT
exports_files(["LICENSE"])
cc_library(
name = "singleheader-json",
hdrs = [
"single_include/nlohmann/json.hpp",
],
includes = ["single_include"],
visibility = ["//visibility:public"],
copts = select({
"@platforms//os:windows": [],
"//conditions:default": ["-fexceptions"],
}),
features = ["-use_header_modules"], # precompiled headers incompatible with -fexceptions.
)