diff options
author | John Gallagher <jgallagher@bignerdranch.com> | 2017-05-01 13:22:15 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-05-01 23:06:54 +0300 |
commit | de762feb87a408d42cbf384a0f4ab4d5de2bfca7 (patch) | |
tree | 635ca6ca883c84e925bf5fa30eb66654bf2f9140 /docs/markdown | |
parent | d6dfc94188fcc79d6f3a343130f575d0da115734 (diff) | |
download | meson-de762feb87a408d42cbf384a0f4ab4d5de2bfca7.zip meson-de762feb87a408d42cbf384a0f4ab4d5de2bfca7.tar.gz meson-de762feb87a408d42cbf384a0f4ab4d5de2bfca7.tar.bz2 |
Fix typo in Generating-sources.md
First `custom_target` example was missing a closing `'`.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Generating-sources.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Generating-sources.md b/docs/markdown/Generating-sources.md index 19213af..82b043d 100644 --- a/docs/markdown/Generating-sources.md +++ b/docs/markdown/Generating-sources.md @@ -19,7 +19,7 @@ mycomp = find_program('mycompiler') Custom targets can take zero or more input files and use them to generate one or more output files. Using a custom target, you can run this compiler at build time to generate the sources: ```meson -gen_src = custom_target('gen-output, +gen_src = custom_target('gen-output', input : ['somefile1.c', 'file2.c'] output : ['out.c', 'out.h'] command : [mycomp, '@INPUT@', |