aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Modules.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/Modules.md')
-rw-r--r--docs/markdown/Modules.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/markdown/Modules.md b/docs/markdown/Modules.md
new file mode 100644
index 0000000..e594383
--- /dev/null
+++ b/docs/markdown/Modules.md
@@ -0,0 +1,18 @@
+# Modules
+
+In addition to core language features, Meson also provides a module system aimed at providing helper methods for common build operations. Using modules is simple, first you import them:
+
+```meson
+mymod = import('somemodule')
+```
+
+After this you can use the returned object to use the functionality provided:
+
+```meson
+mymod.do_something('text argument')
+```
+
+Meson has a selection of modules to make common requirements easy to
+use. Modules can be thought of like the standard library of a
+programming language. Currently Meson provides the modules listed on
+subpages.