From de762feb87a408d42cbf384a0f4ab4d5de2bfca7 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Mon, 1 May 2017 13:22:15 -0400 Subject: Fix typo in Generating-sources.md First `custom_target` example was missing a closing `'`. --- docs/markdown/Generating-sources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/markdown') 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@', -- cgit v1.1