diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-12-01 23:17:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-01 23:17:48 +0200 |
commit | d272f23dba57fa6d4f0bcd56ebb77e3889a3e81c (patch) | |
tree | d9576c41d92085b3a81b166cf613e66d1b205be4 /docs/markdown/Build-options.md | |
parent | 8b3939bde62bc65ae01829ab6a81bc8fd2f68cee (diff) | |
parent | 2a23dd8bb0090ba946e850a3374522b5e43eb595 (diff) | |
download | meson-d272f23dba57fa6d4f0bcd56ebb77e3889a3e81c.zip meson-d272f23dba57fa6d4f0bcd56ebb77e3889a3e81c.tar.gz meson-d272f23dba57fa6d4f0bcd56ebb77e3889a3e81c.tar.bz2 |
Merge pull request #4569 from lzutao/readme
Add link to built-in options page
Diffstat (limited to 'docs/markdown/Build-options.md')
-rw-r--r-- | docs/markdown/Build-options.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/markdown/Build-options.md b/docs/markdown/Build-options.md index b8b1285..9e7fe19 100644 --- a/docs/markdown/Build-options.md +++ b/docs/markdown/Build-options.md @@ -22,6 +22,8 @@ option('array_opt', type : 'array', choices : ['one', 'two', 'three'], value : [ option('some_feature', type : 'feature', value : 'enabled') # Since 0.47.0 ``` +For built-in options, see [Built-in options][builtin_opts]. + ## Build option types All types allow a `description` value to be set describing the option, @@ -180,9 +182,11 @@ option. ## Built-in build options -There are a number of built-in options. To get the current list execute `meson +There are a number of [built-in options][builtin_opts]. To get the current list execute `meson configure` in the build directory. +[builtin_opts]: https://mesonbuild.com/Builtin-options.html + ### Visual Studio #### Startup project |