Table of Contents
API Documentation: | AbstractLinkTask |
---|
Known Subtypes: |
|
---|
Base task for linking a native binary from object files and libraries.
Property | Description |
debuggable | Create a debuggable binary? |
libs | The library files to be passed to the linker. |
linkedFile | The file where the linked binary will be located. |
linkerArgs | Additional arguments passed to the linker. |
source | The source object files to be passed to the linker. |
targetPlatform | The platform being linked for. |
toolChain | The tool chain used for linking. |
Method | Description |
lib(libs) | Adds a set of library files to be linked. The provided libs object is evaluated as per |
source(source) | Adds a set of object files to be linked. The provided source object is evaluated as per |
The library files to be passed to the linker.
The file where the linked binary will be located.
Additional arguments passed to the linker.
The source object files to be passed to the linker.
The platform being linked for.
The tool chain used for linking.
Adds a set of library files to be linked. The provided libs object is evaluated as per Project.files(java.lang.Object[])
.
Adds a set of object files to be linked. The provided source object is evaluated as per Project.files(java.lang.Object[])
.