diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-12-28 00:01:31 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-12-31 23:24:29 +0200 |
commit | 4a189cf8c53e22b747521cae93c18cac3a45cc5a (patch) | |
tree | 14f77b4d494cdb4d83dd1e177ef79d43ba7a398d /docs/markdown/snippets | |
parent | f1afd44b2b2fb85de1c55408b46e50b4381f50d2 (diff) | |
download | meson-4a189cf8c53e22b747521cae93c18cac3a45cc5a.zip meson-4a189cf8c53e22b747521cae93c18cac3a45cc5a.tar.gz meson-4a189cf8c53e22b747521cae93c18cac3a45cc5a.tar.bz2 |
Add unit test that checks that the sample projects compile.
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/templates.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/markdown/snippets/templates.md b/docs/markdown/snippets/templates.md new file mode 100644 index 0000000..6f0474d --- /dev/null +++ b/docs/markdown/snippets/templates.md @@ -0,0 +1,8 @@ +## Project templates + +Meson ships with predefined project templates. To start a new project from +scratch, simply go to an empty directory and type: + +```meson +meson init --name=myproject --type=executable --language=c +``` |