Table of Contents
| API Documentation: | AssemblerSourceSet | 
|---|
Note: This class is incubating and may change in a future version of Gradle.
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"
                    }
                }
            }
        }
    }
}
| Property | Description | 
| source | Incubating The source files. | 
SourceDirectorySet source (read-only)
Note: This property is incubating and may change in a future version of Gradle.
The source files.