diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-05-03 23:20:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 23:20:59 +0300 |
commit | 9a6e79dc6887890ffa6f7198032788caa065a959 (patch) | |
tree | d433e3ef2769d2541a88ded5c11335fbba07d229 /docs/markdown/Reference-manual.md | |
parent | 88ba5ffb84d1e352489bbb094bc426174a8b4440 (diff) | |
parent | 81f35f15492a35bcb294f7a516459141b1bd73ab (diff) | |
download | meson-9a6e79dc6887890ffa6f7198032788caa065a959.zip meson-9a6e79dc6887890ffa6f7198032788caa065a959.tar.gz meson-9a6e79dc6887890ffa6f7198032788caa065a959.tar.bz2 |
Merge pull request #7060 from dcbaker/install-script-targets
Allow meson.add_*_script to take additional types
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 5c5f56a..fd3408c 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1739,6 +1739,8 @@ the following methods. 0.49.0, the function only accepted a single argument. Since 0.54.0 the `MESON_SOURCE_ROOT` and `MESON_BUILD_ROOT` environment variables are set when dist scripts are run. + *(Since 0.55.0)* The output of `configure_file`, `files`, and `find_program` + as well as strings. - `add_install_script(script_name, arg1, arg2, ...)` causes the script given as an argument to be run during the install step, this script @@ -1746,6 +1748,9 @@ the following methods. `MESON_BUILD_ROOT`, `MESON_INSTALL_PREFIX`, `MESON_INSTALL_DESTDIR_PREFIX`, and `MESONINTROSPECT` set. All positional arguments are passed as parameters. + *(Since 0.55.0)* The output of `configure_file`, `files`, `find_program`, + `custom_target`, indexes of `custom_target`, `executable`, `library`, and + other built targets as well as strings. *(added 0.54)* If `meson install` is called with the `--quiet` option, the environment variable `MESON_INSTALL_QUIET` will be set. @@ -1776,6 +1781,8 @@ the following methods. executable given as an argument after all project files have been generated. This script will have the environment variables `MESON_SOURCE_ROOT` and `MESON_BUILD_ROOT` set. + *(Since 0.55.0)* The output of `configure_file`, `files`, and `find_program` + as well as strings. - `backend()` *(added 0.37.0)* returns a string representing the current backend: `ninja`, `vs2010`, `vs2015`, `vs2017`, `vs2019`, |