diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Release-notes-for-0.42.0.md | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/docs/markdown/Release-notes-for-0.42.0.md b/docs/markdown/Release-notes-for-0.42.0.md index 7eb603d..5472341 100644 --- a/docs/markdown/Release-notes-for-0.42.0.md +++ b/docs/markdown/Release-notes-for-0.42.0.md @@ -83,12 +83,12 @@ flag manually, e.g. via `link_args` to a target. This is not recommended because having multiple rpath causes them to stomp on each other. This warning will become a hard error in some future release. - ## Vulkan dependency module -Vulkan can now be used as native dependency. The dependency module will detect -the VULKAN_SDK environment variable or otherwise try to receive the vulkan -library and header via pkgconfig or from the system. +Vulkan can now be used as native dependency. The dependency module +will detect the VULKAN_SDK environment variable or otherwise try to +receive the vulkan library and header via pkgconfig or from the +system. ## Limiting the maximum number of linker processes @@ -120,3 +120,14 @@ accepts the new `exclude_files` and `exclude_directories` keyword arguments that allow specified files or directories to be excluded from the installed subdirectory. +## Make all Meson functionality invokable via the main executable + +Previously Meson had multiple executables such as `mesonintrospect` +and `mesontest`. They are now invokable via the main Meson executable +like this: + + meson configure <arguments> # equivalent to mesonconf <options> + meson test <arguments> # equivalent to mesontest <arguments> + +The old commands are still available but they are deprecated +and will be removed in some future release. |