diff options
Diffstat (limited to 'MODULE.bazel')
| -rw-r--r-- | MODULE.bazel | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/MODULE.bazel b/MODULE.bazel new file mode 100644 index 0000000..4e9fd6e --- /dev/null +++ b/MODULE.bazel @@ -0,0 +1,19 @@ +module( + name = "compiler", + version = "0.0.1", +) + +bazel_dep(name = "rules_cc", version = "0.2.16") +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 = "abb61a688167623088f8768cc9264798df6a9d10", +) + +bazel_dep(name = "willow", version = "0.0.1") + +local_path_override( + module_name = "willow", + path = "willow", +) |