Skip to content

v0.1.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 27 Mar 12:52

Using Bzlmod with Bazel 6 or greater

  1. (Bazel 6 only) Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "cmake_configure_file", version = "0.1.3")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "cmake_configure_file",
    sha256 = "59ec648b6f6a57f8bb1923c2aeb05035db961e2e0dfedadf989906f8d7e56ee3",
    strip_prefix = "cmake_configure_file-0.1.3",
    url = "https://github.com/wep21/cmake_configure_file/releases/download/v0.1.3/cmake_configure_file-v0.1.3.tar.gz",
)

What's Changed

  • Add $(VAR) and $(location ...) expansion by @lalten in #2

Full Changelog: v0.1.2...v0.1.3