AssemblerSourceSet

A set of assembly language sources.

plugins {
    id 'assembler'
}

model {
    components {
        main(NativeLibrarySpec) {
            sources {
                asm {
                    source {
                        srcDirs "src/main/i386", "src/shared/asm"
                        include "**/*.s"
                    }
                }
            }
        }
    }
}

Functions

Link copied to clipboard
abstract fun builtBy(tasks: Array<Any>)
Adds tasks required to build this component.
Link copied to clipboard
abstract fun generatedBy(generatorTask: Task)
Link copied to clipboard
Returns a dependency which contains the tasks which build this artifact.
Link copied to clipboard
@Nullable
abstract fun getBuildTask(): @Nullable Task
Returns the task responsible for building this component.
Link copied to clipboard
abstract fun getDisplayName(): String
Returns a human-consumable display name for this element.
Link copied to clipboard
abstract fun getName(): String
Returns the name of this element.
Link copied to clipboard
@Nullable
abstract fun getParentName(): @Nullable String
Link copied to clipboard
abstract fun getProjectPath(): String
The path to the project containing this component.
Link copied to clipboard
The source files.
Link copied to clipboard
Link copied to clipboard
abstract fun setBuildTask(@Nullable buildTask: @Nullable Task)
Specifies the task responsible for building this component.