PreprocessingTool

Deprecated

The Gradle software model is deprecated and will be removed in Gradle 10. Use the new component model (e.g. cpp-application, cpp-library, swift-application, swift-library, xctest) instead.

A tool that permits configuration of the C preprocessor.

Functions

Link copied to clipboard
abstract fun args(args: Array<String>)
Adds a number of arguments to be passed to the tool.
Link copied to clipboard
abstract fun define(name: String)
Defines a named preprocessor macros to use when compiling this binary.
abstract fun define(name: String, definition: String)
Defines a named preprocessor macro with a value, which will be used when compiling this binary.
Link copied to clipboard
abstract fun getArgs(): List<String>
The arguments passed when executing this tool.
Link copied to clipboard
abstract fun getMacros(): Map<String, String>
The set of preprocessor macros to define when compiling this binary.