From 5f1b96a07677d4374c15161e8d96510d671ea9f8 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 3 May 2017 10:19:59 -0700 Subject: [PATCH] docs: Update SharedLibrary vs_module_defs accepts a File object --- docs/markdown/Reference-manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index bd77e1da7..c9b9f131d 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()