diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-05-03 10:19:59 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-05-04 00:18:22 +0300 |
commit | 5f1b96a07677d4374c15161e8d96510d671ea9f8 (patch) | |
tree | 39ea51fd03bcf0fc824f4a96eacd08ad12978929 | |
parent | 8cb15d728b3cfe9f2b26762ab78490da4628a30d (diff) | |
download | meson-5f1b96a07677d4374c15161e8d96510d671ea9f8.zip meson-5f1b96a07677d4374c15161e8d96510d671ea9f8.tar.gz meson-5f1b96a07677d4374c15161e8d96510d671ea9f8.tar.bz2 |
docs: Update SharedLibrary vs_module_defs accepts a File 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 bd77e1d..c9b9f13 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -567,7 +567,7 @@ Builds a shared library with the given sources. Positional and keyword arguments - `version` a string specifying the version of this shared library, such as `1.1.0`. On Linux and OS X, this is used to set the shared library version in the filename, such as `libfoo.so.1.1.0` and `libfoo.1.1.0.dylib`. If this is not specified, `soversion` is used instead (see below). - `soversion` a string specifying the soversion of this shared library, such as `0`. On Linux and Windows this is used to set the soversion (or equivalent) in the filename. For example, if `soversion` is `4`, a Windows DLL will be called `foo-4.dll` and one of the aliases of the Linux shared library would be `libfoo.so.4`. If this is not specified, the first part of `version` is used instead. For example, if `version` is `3.6.0` and `soversion` is not defined, it is set to `3`. -- `vs_module_defs` a string pointing to a file that contains Visual Studio symbol export definitions. +- `vs_module_defs` a string pointing to a file or a File object that contains Visual Studio symbol export definitions. ### shared_module() |