File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -55,3 +55,6 @@ compile_commands.json
55
55
56
56
# temps
57
57
/version
58
+
59
+ # Bazel
60
+ MODULE.bazel.lock
Original file line number Diff line number Diff line change
1
+ load ("@rules_cc//cc:defs.bzl" , "cc_library" )
2
+
1
3
licenses (["unencumbered" ]) # Public Domain or MIT
2
4
3
5
exports_files (["LICENSE" ])
@@ -14,9 +16,9 @@ cc_library(
14
16
"include/json/allocator.h" ,
15
17
"include/json/assertions.h" ,
16
18
"include/json/config.h" ,
17
- "include/json/json_features.h" ,
18
19
"include/json/forwards.h" ,
19
20
"include/json/json.h" ,
21
+ "include/json/json_features.h" ,
20
22
"include/json/reader.h" ,
21
23
"include/json/value.h" ,
22
24
"include/json/version.h" ,
Original file line number Diff line number Diff line change
1
+ module (
2
+ name = "jsoncpp" ,
3
+ version = "1.9.5" ,
4
+ )
5
+
6
+ bazel_dep (
7
+ name = "rules_cc" ,
8
+ version = "0.0.9" ,
9
+ )
10
+ # -- bazel_dep definitions -- #
You can’t perform that action at this time.
0 commit comments