diff options
author | Hylke Bons <hi@planetpeanut.uk> | 2018-02-25 12:02:34 +0000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-02-25 14:02:34 +0200 |
commit | f1ce7af2d5866b5207c1f4036477a175f433655c (patch) | |
tree | 7b391a07f8e22da6d6f2907302bbc25f38ef1457 /docs/markdown/Adding-arguments.md | |
parent | e2a4cff76f35b7c666a0bcaa087bcdef579ef19f (diff) | |
download | meson-f1ce7af2d5866b5207c1f4036477a175f433655c.zip meson-f1ce7af2d5866b5207c1f4036477a175f433655c.tar.gz meson-f1ce7af2d5866b5207c1f4036477a175f433655c.tar.bz2 |
[skip ci] docs: Add reference table for language args parameter names (#3126)
Diffstat (limited to 'docs/markdown/Adding-arguments.md')
-rw-r--r-- | docs/markdown/Adding-arguments.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/markdown/Adding-arguments.md b/docs/markdown/Adding-arguments.md index e314102..117622b 100644 --- a/docs/markdown/Adding-arguments.md +++ b/docs/markdown/Adding-arguments.md @@ -49,6 +49,8 @@ executable('prog', 'prog.cc', cpp_args : '-DCPPTHING') Here we create a C++ executable with an extra argument that is used during compilation but not for linking. +You can find the parameter name for other languages in the [reference tables](Reference-tables.md). + Specifying extra linker arguments is done in the same way: ```meson |