diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-08-16 16:12:35 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-08-16 16:18:18 -0400 |
commit | 25b0988d4e40d22d907169b4f73ff07b4cb7fd0e (patch) | |
tree | b5cdc4588cc1856a00126fb28d09b4fbd1bb9079 /docs/markdown/GuiTutorial.md | |
parent | 33a5352e3c56c3d245aed48005515f097ab2ab53 (diff) | |
download | meson-25b0988d4e40d22d907169b4f73ff07b4cb7fd0e.zip meson-25b0988d4e40d22d907169b4f73ff07b4cb7fd0e.tar.gz meson-25b0988d4e40d22d907169b4f73ff07b4cb7fd0e.tar.bz2 |
docs: fix various references to "meson builddir"
This is wrong, it should use "meson setup builddir".
Diffstat (limited to 'docs/markdown/GuiTutorial.md')
-rw-r--r-- | docs/markdown/GuiTutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/GuiTutorial.md b/docs/markdown/GuiTutorial.md index 3a7c3e5..6990eef 100644 --- a/docs/markdown/GuiTutorial.md +++ b/docs/markdown/GuiTutorial.md @@ -64,7 +64,7 @@ executable('sdlprog', 'sdlprog.c') With this done we can start the build with the following command: - meson builddir + meson setup builddir Here `builddir` is the _build directory_, everything that is generated during the build is put in that directory. When run, it should look |