diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-22 17:40:51 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-27 18:29:48 -0400 |
commit | 4e439707529eafeebf1cfe628e52772ddbf5ea84 (patch) | |
tree | 53ba80a8f0b100bd6492bef1e50ec32abb4872da /docs/markdown/Adding-arguments.md | |
parent | 32ebb81f1a8583f46fd8f71cecbaecd3ad66b2cd (diff) | |
download | meson-4e439707529eafeebf1cfe628e52772ddbf5ea84.zip meson-4e439707529eafeebf1cfe628e52772ddbf5ea84.tar.gz meson-4e439707529eafeebf1cfe628e52772ddbf5ea84.tar.bz2 |
docs: linkify some function references
Diffstat (limited to 'docs/markdown/Adding-arguments.md')
-rw-r--r-- | docs/markdown/Adding-arguments.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Adding-arguments.md b/docs/markdown/Adding-arguments.md index adbc23e..db282c6 100644 --- a/docs/markdown/Adding-arguments.md +++ b/docs/markdown/Adding-arguments.md @@ -21,7 +21,7 @@ add_global_arguments('-DFOO=bar', language : 'c') This makes Meson add the define to all C compilations. Usually you would use this setting for flags for global settings. Note that for setting the C/C++ language standard (the `-std=c99` argument in GCC), -you would probably want to use a default option of the `project()` +you would probably want to use a default option of the [[project]] function. For details see the [reference manual](Reference-manual.md). Global arguments have certain limitations. They all have to be defined |