Add Bazel BUILD and WORKSPACE files.
This commit is contained in:
parent
82322db89b
commit
88b5952c3c
2
.gitignore
vendored
2
.gitignore
vendored
@ -23,3 +23,5 @@ cmake-build-debug
|
|||||||
|
|
||||||
test/test-*
|
test/test-*
|
||||||
/.vs
|
/.vs
|
||||||
|
|
||||||
|
bazel-*
|
||||||
|
|||||||
15
BUILD
Normal file
15
BUILD
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
|
exports_files([
|
||||||
|
"LICENSE.MIT",
|
||||||
|
"NOTICE"
|
||||||
|
])
|
||||||
|
|
||||||
|
load(":nlohmann_json.bzl", "nlohmann_json_hdrs", "nlohmann_json_srcs")
|
||||||
|
|
||||||
|
cc_library(
|
||||||
|
name = "nlohmann_json",
|
||||||
|
srcs = nlohmann_json_srcs,
|
||||||
|
hdrs = nlohmann_json_hdrs,
|
||||||
|
deps = [],
|
||||||
|
)
|
||||||
Loading…
Reference in New Issue
Block a user