The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
575 B
20 lines
575 B
3 years ago
|
name: add_global_link_arguments
|
||
|
returns: void
|
||
|
description: |
|
||
|
Adds global arguments to the linker command line.
|
||
|
|
||
|
Like [[add_global_arguments]] but the arguments are passed to the linker.
|
||
|
|
||
|
notes:
|
||
|
- Usually you should use [[add_project_link_arguments]] instead,
|
||
|
because that works even when you project is used as a subproject.
|
||
|
- You must pass always arguments individually `arg1, arg2, ...`
|
||
|
rather than as a string `'arg1 arg2', ...`
|
||
|
|
||
|
varargs:
|
||
|
type: str
|
||
|
name: Linker argument
|
||
|
description: The linker arguments to add
|
||
|
|
||
|
kwargs_inherit: add_global_arguments
|