Add MODULE.bazel file (#1059)

This is the first step of the bzlmod migration: https://bazel.build/external/migration. If/when we no longer support older Bazel versions (bzlmod became GA in 6.0), we can remove WORKSPACE.
This commit is contained in:
Vertexwahn 2024-01-11 10:41:55 +01:00 committed by GitHub
parent 7e6fca90e8
commit ac12a9e794
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

6
MODULE.bazel Normal file
View File

@ -0,0 +1,6 @@
module(
name = "glog",
compatibility_level = 1,
)
bazel_dep(name = "gflags", version = "2.2.2", repo_name = "com_github_gflags_gflags")