diff options
-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@']) |