Skip to content

Releases: wep21/cmake_configure_file

v0.1.3

27 Mar 12:52
Compare
Choose a tag to compare
v0.1.3 Pre-release
Pre-release

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

v0.1.2

13 Mar 16:22
Compare
Choose a tag to compare

What's Changed

  • Set undefines after parsing cmakelists by @lalten in #1

New Contributors

  • @lalten made their first contribution in #1

Full Changelog: v0.1.1...v0.1.2

v0.1.1

28 Dec 01:54
Compare
Choose a tag to compare

Full Changelog: v0.1.0...v0.1.1

v0.1.0

08 Feb 18:29
Compare
Choose a tag to compare