diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-11-26 22:19:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 22:19:12 +0200 |
commit | 2fb98144dd60bc974dda2c0e710fc4c41edd205e (patch) | |
tree | 91bc18be51daa16c0b6a1236e65e1c17056c8372 /docs/markdown/snippets | |
parent | 5e2dd5b2e07858d3b87291f4abdaf886e15de0b8 (diff) | |
parent | ceb5e9f0420785799cbbc6167d224e89dcefb5ce (diff) | |
download | meson-2fb98144dd60bc974dda2c0e710fc4c41edd205e.zip meson-2fb98144dd60bc974dda2c0e710fc4c41edd205e.tar.gz meson-2fb98144dd60bc974dda2c0e710fc4c41edd205e.tar.bz2 |
Merge pull request #4546 from mensinda/buildopts
Added 'section' key to buildoptions introspection
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/buildopts_section.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/markdown/snippets/buildopts_section.md b/docs/markdown/snippets/buildopts_section.md new file mode 100644 index 0000000..74cf8a1 --- /dev/null +++ b/docs/markdown/snippets/buildopts_section.md @@ -0,0 +1,14 @@ +## New `section` key for the buildoptions introspection + +Meson now has a new `section` key in each build option. This allows +IDEs to group these options similar to `meson configure`. + +The possible values for `section` are: + + - core + - backend + - base + - compiler + - directory + - user + - test |