STT-tensorflow/third_party/systemlibs/jsoncpp.BUILD
Alexander Grund 20a00a0328
Include jsonCPP headers via #include "json/json.h"
Don't use #include "include/json/json.h" which is unusual and therefore confusing
This allows to remove the header symlinking done for the system lib version

Closes #42303
2020-08-20 16:39:40 +02:00

13 lines
238 B
Plaintext

licenses(["unencumbered"]) # Public Domain or MIT
filegroup(
name = "LICENSE",
visibility = ["//visibility:public"],
)
cc_library(
name = "jsoncpp",
linkopts = ["-ljsoncpp"],
visibility = ["//visibility:public"],
)