diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-07-21 22:19:07 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-07-21 22:19:07 +0300 |
commit | bff37a90fc475c6204087dcf1ccb6734b990141e (patch) | |
tree | d228c8107a4daf66e76f3d0fa4a03e5e689c55e9 /docs/markdown/Reference-manual.md | |
parent | 328a1f30fdfdadc6d5df4ebfc075e9cd5c0df96e (diff) | |
parent | e82edc179fe86e68d1f74fe084fd891ef2d12316 (diff) | |
download | meson-bff37a90fc475c6204087dcf1ccb6734b990141e.zip meson-bff37a90fc475c6204087dcf1ccb6734b990141e.tar.gz meson-bff37a90fc475c6204087dcf1ccb6734b990141e.tar.bz2 |
Merged buildrpath branch.
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 2bbe843..1a98c4c 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -243,6 +243,7 @@ Executable supports the following keyword arguments. Note that just like the pos - `extra_files` are not used for the build itself but are shown as source files in IDEs that group files by targets (such as Visual Studio) - `install`, when set to true, this executable should be installed - `install_rpath` a string to set the target's rpath to after install (but *not* before that) +- `build_rpath` a string to add to target's rpath definition in the build dir, but which will be removed on install - `install_dir` override install directory for this file. The value is relative to the `prefix` specified. F.ex, if you want to install plugins into a subdir, you'd use something like this: `install_dir : get_option('libdir') + '/projectname-1.0'`. - `objects` list of prebuilt object files (usually for third party products you don't have source to) that should be linked in this target, **never** use this for object files that you build yourself. - `name_suffix` the string that will be used as the extension for the target by overriding the default. By default on Windows this is `exe` and on other platforms it is omitted. |