aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-10-21 18:53:24 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-10-21 18:53:24 +0300
commit1a2f5b3bc83ba7d145a56b5ea9174f19209e182d (patch)
treef2b85fb53dcd7305c0bd3417acfb38721400f36b /docs/markdown
parentef14681fa02fd371891e0d9013f5b631aa619400 (diff)
downloadmeson-1a2f5b3bc83ba7d145a56b5ea9174f19209e182d.zip
meson-1a2f5b3bc83ba7d145a56b5ea9174f19209e182d.tar.gz
meson-1a2f5b3bc83ba7d145a56b5ea9174f19209e182d.tar.bz2
Clarify that the tutorial requires prebuilt dependencies. [skip ci]
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/Tutorial.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/markdown/Tutorial.md b/docs/markdown/Tutorial.md
index c555abc..c4436d0 100644
--- a/docs/markdown/Tutorial.md
+++ b/docs/markdown/Tutorial.md
@@ -9,6 +9,19 @@ definition for a simple project. Then we expand it to use external
dependencies to show how easily they can be integrated into your
project.
+This tutorial has been written mostly for Linux usage. It assumes that
+you have GTK development libraries available on the system. On
+Debian-derived systems such as Ubuntu they can be installed with the
+following command:
+
+```
+sudo apt install libgtk-3-dev
+```
+
+It is possible to build the GUI application On other platforms such as
+Windows and macOS but it requires for you to install the dependency
+libraries using a dependendy provider of your choice.
+
The humble beginning
-----