Skip to content

v0.4.0

Choose a tag to compare

@jayconrod jayconrod released this 01 Dec 21:23
4bb1d7c

Using Bzlmod

Paste this snippet into your MODULE.bazel file:

bazel_dep(name = "gazelle_cc", version = "0.4.0")

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "gazelle_cc",
    sha256 = "3ea2daea62213615eb6bc5c823f9c264c14b685b27d576a835e7b4afcd1ba044",
    strip_prefix = "gazelle_cc-0.4.0",
    url = "https://github.com/EngFlow/gazelle_cc/releases/download/v0.4.0/gazelle_cc-v0.4.0.tar.gz",
)
load("@gazelle_cc//:deps.bzl", "gazelle_cc_dependencies")
gazelle_cc_dependencies()

See https://github.com/EngFlow/gazelle_cc#installation for full setup instructions.