diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2026-01-05 12:40:09 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2026-01-10 15:37:46 -0500 |
| commit | d4b629cc275769c2553db819643849cda2395a17 (patch) | |
| tree | 6dcc5d0c886945f8b58b4d8fd6c7eea4bb1b194d /MODULE.bazel | |
| download | compiler-d4b629cc275769c2553db819643849cda2395a17.tar.gz | |
init
wip
wip, pt2
wip, pt3
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", +) |