summaryrefslogtreecommitdiff
path: root/MODULE.bazel
blob: 4e9fd6e1bfb6fb009f13ed9a70d30af299337214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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",
)