Compiles Windows Resource scripts into .res files.
Constructor and description |
---|
WindowsResourceCompile
() |
Type | Name and description |
---|---|
void |
compile(IncrementalTaskInputs inputs) |
List<String> |
getCompilerArgs() Additional arguments to provide to the compiler. |
FileCollection |
getIncludes() Returns the header directories to be used for compilation. |
IncrementalCompilerBuilder |
getIncrementalCompilerBuilder() |
Map<String, String> |
getMacros() Macros that should be defined for the compiler. |
File |
getOutputDir() The directory where object files will be generated. |
String |
getOutputType() |
FileCollection |
getSource() Returns the source files to be compiled. |
NativePlatform |
getTargetPlatform() The platform being targeted. |
NativeToolChain |
getToolChain() The tool chain used for compilation. |
void |
includes(Object includeRoots) Add directories where the compiler should search for header files. |
void |
setCompilerArgs(List<String> compilerArgs) |
void |
setMacros(Map<String, String> macros) |
void |
setOutputDir(File outputDir) |
void |
setTargetPlatform(NativePlatform targetPlatform) |
void |
setToolChain(NativeToolChain toolChain) |
void |
source(Object sourceFiles) Adds a set of source files to be compiled. |
Returns the header directories to be used for compilation.
The directory where object files will be generated.
Returns the source files to be compiled.
The platform being targeted.
The tool chain used for compilation.
Add directories where the compiler should search for header files.
Adds a set of source files to be compiled. The provided sourceFiles object is evaluated as per Project.files.
Gradle API 2.2-20140924021627+0000