diff options
author | Patrick Griffis <tingping@tingping.se> | 2019-08-14 16:35:29 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-23 21:10:00 +0300 |
commit | 1670fca36fcb1a4fe4780e96731e954515501a35 (patch) | |
tree | 66b6186701f4bffc3dcbf79867e385365f95fc78 /docs/markdown | |
parent | 6a12f3fc16cde79515ce38040421b1a6743bdbb1 (diff) | |
download | meson-1670fca36fcb1a4fe4780e96731e954515501a35.zip meson-1670fca36fcb1a4fe4780e96731e954515501a35.tar.gz meson-1670fca36fcb1a4fe4780e96731e954515501a35.tar.bz2 |
Add blocks dependency
This allows easily enabling the blocks clang extension.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Dependencies.md | 10 | ||||
-rw-r--r-- | docs/markdown/Release-notes-for-0.52.0.md | 4 |
2 files changed, 14 insertions, 0 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index 0cdd353..9672887 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -246,6 +246,16 @@ dep = dependency('appleframeworks', modules : 'foundation') These dependencies can never be found for non-OSX hosts. +## Blocks + +Enable support for Clang's blocks extension. + +```meson +dep = dependency('blocks') +``` + +*(added 0.52.0)* + ## Boost Boost is not a single dependency but rather a group of different diff --git a/docs/markdown/Release-notes-for-0.52.0.md b/docs/markdown/Release-notes-for-0.52.0.md index c36758a..de317df 100644 --- a/docs/markdown/Release-notes-for-0.52.0.md +++ b/docs/markdown/Release-notes-for-0.52.0.md @@ -9,3 +9,7 @@ short-description: Release notes for 0.52.0 Added the function `is_disabler(var)`. Returns true if a variable is a disabler and false otherwise. + +## Add blocks dependency + +Add `dependency('blocks')` to use the Clang blocks extension. |