A tool that permits configuration of the C preprocessor.
Type | Name and description |
---|---|
void |
define(String name) Defines a named preprocessor macros to use when compiling this binary. |
void |
define(String name, String definition) Defines a named preprocessor macro with a value, which will be used when compiling this binary. |
Map<String, String> |
getMacros() The set of preprocessor macros to define when compiling this binary. |
Defines a named preprocessor macros to use when compiling this binary. The macro will be supplied to the compiler as '-D name'.
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'.