diff options
author | Michael Hirsch, Ph.D <10931741+scivision@users.noreply.github.com> | 2019-07-16 07:22:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-16 07:22:41 -0400 |
commit | 6bf71e816bf1a524b2f7edb27345e3f3c4d3cc90 (patch) | |
tree | 4d1d0a69621925846c2c8594070d1eede58a3b97 | |
parent | d7a682fdede536dd95f76425ac9e06faf334199c (diff) | |
parent | 42d48b461d55ded8669797fda1d6bc54c69ffac3 (diff) | |
download | meson-6bf71e816bf1a524b2f7edb27345e3f3c4d3cc90.zip meson-6bf71e816bf1a524b2f7edb27345e3f3c4d3cc90.tar.gz meson-6bf71e816bf1a524b2f7edb27345e3f3c4d3cc90.tar.bz2 |
Merge pull request #5663 from ePirat/patch-3
Docs: Fix brackets in generator examples [ci skip]
-rw-r--r-- | docs/markdown/Generating-sources.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/Generating-sources.md b/docs/markdown/Generating-sources.md index fe7d7ef..e22112f 100644 --- a/docs/markdown/Generating-sources.md +++ b/docs/markdown/Generating-sources.md @@ -59,14 +59,14 @@ foo_c = custom_target( output : 'foo.c', input : 'my_gen.py', command : [prog_python, '@INPUT@', '--code', '@OUTPUT@'], -] +) foo_h = custom_target( 'foo.h', output : 'foo.h', input : 'my_gen.py', command : [prog_python, '@INPUT@', '--header', '@OUTPUT@'], -] +) libfoo = static_library('foo', [foo_c, foo_h]) @@ -94,7 +94,7 @@ foo_ch = custom_target( output : ['foo.c', 'foo.h'], input : 'my_gen.py', command : [prog_python, '@INPUT@', '@OUTPUT@'], -] +) libfoo = static_library('foo', [foo_ch]) |