Table of Contents
API Documentation: | CreateStaticLibrary |
---|
Note: This class is incubating and may change in a future version of Gradle.
Assembles a static library from object files.
Property | Description |
outputFile | Incubating The file where the output binary will be located. |
source | Incubating The source object files to be passed to the archiver. |
staticLibArgs | Incubating Additional arguments passed to the archiver. |
targetPlatform | Incubating The platform being linked for. |
toolChain | Incubating The tool chain used for linking. |
Method | Description |
source(source) | Incubating Adds a set of object files to be linked. |
Note: This property is incubating and may change in a future version of Gradle.
The file where the output binary will be located.
Note: This property is incubating and may change in a future version of Gradle.
The source object files to be passed to the archiver.
Note: This property is incubating and may change in a future version of Gradle.
Additional arguments passed to the archiver.
Note: This property is incubating and may change in a future version of Gradle.
The platform being linked for.
Note: This property is incubating and may change in a future version of Gradle.
The tool chain used for linking.
Note: This method is incubating and may change in a future version of Gradle.
Adds a set of object files to be linked.
The provided source object is evaluated as per Project.files(java.lang.Object[])
.