aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2019-02-11 20:25:02 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2019-02-11 20:25:02 +0200
commit5fe4b752fec9b56da213c38127cab4e70efddc6d (patch)
tree1e30eb7629b9ced0604bd6bb4980667ffe46cf89 /doc
parentmove add_global_arguments before build targets (diff)
downloadsmolbote-5fe4b752fec9b56da213c38127cab4e70efddc6d.tar.xz
Add configure script
Configure script is not needed when building, it is provided as a convenience tool. Requires python3.
Diffstat (limited to 'doc')
-rw-r--r--doc/Building/meson.asciidoc (renamed from doc/Development/meson.asciidoc)9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/Development/meson.asciidoc b/doc/Building/meson.asciidoc
index 1eb08c6..255e0ad 100644
--- a/doc/Development/meson.asciidoc
+++ b/doc/Building/meson.asciidoc
@@ -28,3 +28,12 @@ build% meson configure -D<option-name>=<enabled|disabled>
build% meson configure -DPlasma=enabled
----
+==== Prevent meson from downloading wraps
+During configure, meson can download missing dependencies on its own using
+wraps. To disable this, pass '--wrap-mode=nodownload' during the configure
+phase:
+[source, sh]
+----
+repo% meson --wrap-mode=nodownload build-path
+----
+