Bazel: Improve support for bzlmod

This commit is contained in:
Vertexwahn 2023-08-15 20:19:16 +02:00
parent 5d2754306d
commit 55e16a449f
2 changed files with 8 additions and 0 deletions

3
.gitignore vendored
View File

@ -39,3 +39,6 @@
/localhost.pem
/localhost-key.pem
/serve_header.yml
# Ignore Bazel generated files
bazel-*

5
MODULE.bazel Normal file
View File

@ -0,0 +1,5 @@
module(
name = "nlohmann_json",
version = "3.11.2", # Keep in sync with NLOHMANN_JSON_VERSION_MAJOR, NLOHMANN_JSON_VERSION_MINOR, NLOHMANN_JSON_VERSION_PATCH
compatibility_level = 1,
)