chore(bazel): add MODULE.bazel files for bzlmod

Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
This commit is contained in:
Matthieu MOREL 2024-03-11 00:15:11 +01:00
parent 69098a18b9
commit c540498405
3 changed files with 8 additions and 1 deletions

3
.gitignore vendored
View File

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

View File

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

4
MODULE.bazel Normal file
View File

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