diff options
author | Marty Plummer <ntzrmtthihu777@gmail.com> | 2017-07-12 23:02:41 -0500 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-07-13 16:31:24 +0200 |
commit | cb05b2aab0df8e99f1526a66a2639501ae12dd2e (patch) | |
tree | a2f69dd1eb988a4838194034848a9e260a2d7a4d | |
parent | 0283a2fb41fb4c25be1d0078bb40ae761d47462a (diff) | |
download | meson-cb05b2aab0df8e99f1526a66a2639501ae12dd2e.zip meson-cb05b2aab0df8e99f1526a66a2639501ae12dd2e.tar.gz meson-cb05b2aab0df8e99f1526a66a2639501ae12dd2e.tar.bz2 |
docs: fixed meson syntax for Generating-sources.md
Signed-off-by: Marty Plummer <ntzrmtthihu777@gmail.com>
-rw-r--r-- | docs/markdown/Generating-sources.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Generating-sources.md b/docs/markdown/Generating-sources.md index 630b7e9..8a03945 100644 --- a/docs/markdown/Generating-sources.md +++ b/docs/markdown/Generating-sources.md @@ -24,8 +24,8 @@ Custom targets can take zero or more input files and use them to generate one or ```meson gen_src = custom_target('gen-output', - input : ['somefile1.c', 'file2.c'] - output : ['out.c', 'out.h'] + input : ['somefile1.c', 'file2.c'], + output : ['out.c', 'out.h'], command : [mycomp, '@INPUT@', '--c-out', '@OUTPUT0@', '--h-out', '@OUTPUT1@']) |