2021-08-21 22:27:56 +08:00
|
|
|
name: add_project_arguments
|
|
|
|
returns: void
|
|
|
|
description: |
|
|
|
|
Adds project specific arguments to the compiler command line.
|
|
|
|
|
|
|
|
This function behaves in the same way as [[add_global_arguments]] except
|
|
|
|
that the arguments are only used for the current project, they won't
|
|
|
|
be used in any other subproject.
|
|
|
|
|
|
|
|
notes:
|
|
|
|
- You must pass always arguments individually `arg1, arg2, ...`
|
|
|
|
rather than as a string `'arg1 arg2', ...`
|
|
|
|
|
|
|
|
varargs:
|
|
|
|
type: str
|
|
|
|
name: Compiler argument
|
2022-06-01 03:32:40 +08:00
|
|
|
description: The compiler arguments to add
|
2021-08-21 22:27:56 +08:00
|
|
|
|
|
|
|
kwargs_inherit: add_global_arguments
|