aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-11-21 00:26:24 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2017-11-21 23:29:06 +0200
commitf9e88cd37e6babc1de476398f54a540f3eeca1c7 (patch)
treeeec1d6611d1f1c149862a7a9192d114a22d3b03d
parent22adda16179e11dd7e5ca34a34e6286afcf6c0c9 (diff)
downloadmeson-f9e88cd37e6babc1de476398f54a540f3eeca1c7.zip
meson-f9e88cd37e6babc1de476398f54a540f3eeca1c7.tar.gz
meson-f9e88cd37e6babc1de476398f54a540f3eeca1c7.tar.bz2
Added release note mention of embedded Python in MSI packages.
-rw-r--r--docs/markdown/snippets/builtin-python.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/markdown/snippets/builtin-python.md b/docs/markdown/snippets/builtin-python.md
new file mode 100644
index 0000000..01bb6e0
--- /dev/null
+++ b/docs/markdown/snippets/builtin-python.md
@@ -0,0 +1,9 @@
+# Embedded Python in Windows MSI packages
+
+Meson now ships an internal version of Python in the MSI installer packages.
+This means that it can run Python scripts that are part of your build
+transparently. That is, if you do the following:
+
+ myprog = find_program('myscript.py')
+
+Then Meson will run the script with its internal Python version if necessary.