-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
36 lines (30 loc) · 1.06 KB
/
Copy pathMODULE.bazel
File metadata and controls
36 lines (30 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# MODULE.bazel
#
# This file defines the module configuration for the Bazel project.
# A module is a collection of Bazel packages that are released, versioned,
# and maintained together.
#
# The module configuration specifies metadata about the module, such as:
# - Module name
# - Dependencies on other modules
# - Version information
# - Repository rules and their configurations
#
# See https://bazel.build/external/module for more details on Bazel modules.
"""Configuration for the cpp-devcontainer Bazel module."""
module(
name = "cpp-devcontainer",
version = "1.0.0",
)
bazel_dep(name = "platforms", version = "1.0.0")
register_toolchains(
"//tools/toolchains:cc_toolchain_for_linux_x86_64",
)
bazel_dep(name = "rules_cc", version = "0.1.3")
bazel_dep(name = "googletest", version = "1.17.0")
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
git_override(
module_name = "hedron_compile_commands",
remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
commit = "4f28899228fb3ad0126897876f147ca15026151e",
)