This commit is contained in:
Matthieu MOREL 2025-01-10 20:03:13 -05:00 committed by GitHub
commit 4407b97c56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 1 deletions

3
.gitignore vendored
View File

@ -55,3 +55,6 @@ compile_commands.json
# temps # temps
/version /version
# Bazel
MODULE.bazel.lock

View File

@ -14,9 +14,9 @@ cc_library(
"include/json/allocator.h", "include/json/allocator.h",
"include/json/assertions.h", "include/json/assertions.h",
"include/json/config.h", "include/json/config.h",
"include/json/json_features.h",
"include/json/forwards.h", "include/json/forwards.h",
"include/json/json.h", "include/json/json.h",
"include/json/json_features.h",
"include/json/reader.h", "include/json/reader.h",
"include/json/value.h", "include/json/value.h",
"include/json/version.h", "include/json/version.h",

4
MODULE.bazel Normal file
View File

@ -0,0 +1,4 @@
module(
name = "jsoncpp",
version = "0.0.0",
)