Table of Contents
API Documentation: | PreprocessingTool |
---|
Note: This class is incubating and may change in a future version of Gradle.
Method | Description |
args(args) | Incubating Adds a number of arguments to be passed to the tool. |
define(name) | Incubating Defines a named preprocessor macros to use when compiling this binary. The macro will be supplied to the compiler as '-D name'. |
define(name, definition) | Incubating Defines a named preprocessor macro with a value, which will be used when compiling this binary. The macro will be supplied to the compiler as '-D name=definition'. |
Note: This property is incubating and may change in a future version of Gradle.
The arguments passed when executing this tool.
Note: This property is incubating and may change in a future version of Gradle.
The set of preprocessor macros to define when compiling this binary.
void
args
(String
...
args)
String
...Note: This method is incubating and may change in a future version of Gradle.
Adds a number of arguments to be passed to the tool.
void
define
(String
name)
Note: This method is incubating and may change in a future version of Gradle.
Defines a named preprocessor macros to use when compiling this binary. The macro will be supplied to the compiler as '-D name'.
Note: This method is incubating and may change in a future version of Gradle.
Defines a named preprocessor macro with a value, which will be used when compiling this binary. The macro will be supplied to the compiler as '-D name=definition'.