diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-12-13 20:33:23 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-12-18 01:19:16 +0200 |
commit | c4649704c8dc59f82826ddd41db2d1cc4f43af0b (patch) | |
tree | b51b26e9271d4b00b219629d12c637bfc96a7d88 /docs/markdown/Python-module.md | |
parent | 3122bac28a1e047da28b0190b8a0610cc26028dc (diff) | |
download | meson-c4649704c8dc59f82826ddd41db2d1cc4f43af0b.zip meson-c4649704c8dc59f82826ddd41db2d1cc4f43af0b.tar.gz meson-c4649704c8dc59f82826ddd41db2d1cc4f43af0b.tar.bz2 |
python: add embed to the python dependency function
Diffstat (limited to 'docs/markdown/Python-module.md')
-rw-r--r-- | docs/markdown/Python-module.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/markdown/Python-module.md b/docs/markdown/Python-module.md index 6f9a764..152aa5c 100644 --- a/docs/markdown/Python-module.md +++ b/docs/markdown/Python-module.md @@ -103,7 +103,11 @@ need to add `dependencies : py_installation.dependency()`, see [][`dependency()` python_dependency py_installation.dependency(...) ``` -This method accepts the same arguments as the standard [dependency] function. +This method accepts the same arguments as the standard [dependency] function and +the following additional keyword arguments: + +- `embed`: *(since 0.53.0)* If true, meson will try to find a python dependency + that can be used for embedding python into an application. **Returns**: a [python dependency][`python_dependency` object] |