aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-08-06 17:00:51 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2017-08-06 17:00:51 +0300
commitd94e06db21e8bcfcf194b7ba5eb8255acd168d4d (patch)
tree4ed41e9f3d21ed943b4145402f874e5449c05a85 /docs/markdown
parent06f195e9ec1e8ea399ebb138b63865c1e3f4c90d (diff)
parente765091c2e34f5ac3cd84cf5a61c30ec0868e0a9 (diff)
downloadmeson-d94e06db21e8bcfcf194b7ba5eb8255acd168d4d.zip
meson-d94e06db21e8bcfcf194b7ba5eb8255acd168d4d.tar.gz
meson-d94e06db21e8bcfcf194b7ba5eb8255acd168d4d.tar.bz2
Merged singleexe branch.
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/Release-notes-for-0.42.0.md19
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.