Package org.gradle.nativeplatform
Interface PreprocessingTool
- All Superinterfaces:
Tool
A tool that permits configuration of the C preprocessor.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Defines a named preprocessor macros to use when compiling this binary.void
Defines a named preprocessor macro with a value, which will be used when compiling this binary.The set of preprocessor macros to define when compiling this binary.
-
Method Details
-
getMacros
The set of preprocessor macros to define when compiling this binary. -
define
Defines a named preprocessor macros to use when compiling this binary. The macro will be supplied to the compiler as '-D name'. -
define
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'.
-