Include fmt 11.0.2
[openal-soft.git] / fmt-11.0.2 / support / bazel / README.md
blob44508f1c25176963b791d54d6af481bb98068903
1 # Bazel support
3 To get [Bazel](https://bazel.build/) working with {fmt} you can copy the files `BUILD.bazel`, 
4 `MODULE.bazel`, `WORKSPACE.bazel`, and `.bazelversion` from this folder (`support/bazel`) to the root folder of this project. 
5 This way {fmt} gets bazelized and can be used with Bazel (e.g. doing a `bazel build //...` on {fmt}). 
7 ## Using {fmt} as a dependency
9 ### Using Bzlmod
11 The [Bazel Central Registry](https://github.com/bazelbuild/bazel-central-registry/tree/main/modules/fmt) provides support for {fmt}.
13 For instance, to use {fmt} add to your `MODULE.bazel` file:
15 ```
16 bazel_dep(name = "fmt", version = "10.2.1")
17 ```
19 ### Live at head
21 For a live-at-head approach, you can copy the contents of this repository and move the Bazel-related build files to the root folder of this project as described above and make use of `local_path_override`, e.g.:
23 ```
24 local_path_override(
25     module_name = "fmt",
26     path = "../third_party/fmt",
28 ```