diff options
| -rw-r--r-- | NEWS.org | 5 | ||||
| -rw-r--r-- | meson.build | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -129,7 +129,10 @@ - 1.12.13: if available, *mu* now uses the system versions of ~CLI11~ and ~fmt~ instead of the "vendored" ones. This can be overridden by passing the - ~-Duse-embedded-cli11=true~ and ~-Duse-embedded-fmt=true~ to Meson. + ~-Duse-embedded-cli11=true~ and ~-Duse-embedded-fmt=true~ to Meson. You can + influence where the build system (i.e., meson) looks through the + `PKG_CONFIG_PATH` environment variable (see the pkg-config/pkgconf + man-pages) - 1.12.13: test commands are now built "lazily", i.e., building is only triggered when running the tests. This speed up the build when not diff --git a/meson.build b/meson.build index 97b5761..c3fb36a 100644 --- a/meson.build +++ b/meson.build @@ -17,7 +17,7 @@ ################################################################################ # project setup project('mu', ['c', 'cpp'], - version: '1.12.13-dev2', + version: '1.12.13', meson_version: '>= 0.56.0', license: 'GPL-3.0-or-later', default_options : [ @@ -28,7 +28,7 @@ project('mu', ['c', 'cpp'], # hard-code the date here (for reproducibility); we derive the dates used in # e.g. documentation from this. -mu_date='2025-09-08' +mu_date='2025-09-12' # installation paths prefixdir = get_option('prefix') |
