diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2017-05-19 15:03:43 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2017-05-19 18:00:42 +0100 |
commit | 75099510f1c7d1a52b589b4364fe6bb64d7aeb4e (patch) | |
tree | 651f2b62066b5f3c1093cefb69a07fe1dd5c8f67 | |
parent | cad83867330e38b0c6d896b71457a95a62744670 (diff) | |
download | meson-75099510f1c7d1a52b589b4364fe6bb64d7aeb4e.zip meson-75099510f1c7d1a52b589b4364fe6bb64d7aeb4e.tar.gz meson-75099510f1c7d1a52b589b4364fe6bb64d7aeb4e.tar.bz2 |
docs: The return value of executable() is a builttarget object.
Make executable() consistent with all other functions returning a
buildtarget, it's return type is a buildtarget object.
-rw-r--r-- | docs/markdown/Reference-manual.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 04ba15f..366ece7 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -214,7 +214,7 @@ Returns an empty [environment variable object](#environment-object). ### executable() ``` meson - exe executable(*exe_name*, *sources*, ...) + buildtarget executable(*exe_name*, *sources*, ...) ``` Creates a new executable. The first argument specifies its name and the remaining positional arguments define the input files to use. They can be of the following types: |