diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Reference-manual.md | 7 | ||||
-rw-r--r-- | docs/markdown/snippets/shared_module_defs.md | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 195c451..328cc09 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1334,6 +1334,13 @@ variables defined in the [`executable`](#executable) it is loaded by, you will need to set the `export_dynamic` argument of the executable to `true`. +Supports the following extra keyword arguments: + +- `vs_module_defs`, *(Added 0.52.0)*, a string, a File object, or + Custom Target for a Microsoft module definition file for controlling + symbol exports, etc., on platforms where that is possible + (e.g. Windows). + **Note:** Linking to a shared module is not supported on some platforms, notably OSX. Consider using a [`shared_library`](#shared_library) instead, if you need to both diff --git a/docs/markdown/snippets/shared_module_defs.md b/docs/markdown/snippets/shared_module_defs.md new file mode 100644 index 0000000..5bc1de7 --- /dev/null +++ b/docs/markdown/snippets/shared_module_defs.md @@ -0,0 +1,4 @@ +## Added `vs_module_defs` to `shared_module()` + +Like `shared_library()`, `shared_module()` now accepts +`vs_module_defs` argument for controlling symbol exports, etc. |