Interface AssemblerSourceSet

All Superinterfaces:
Buildable, BuildableComponentSpec, ComponentSpec, LanguageSourceSet, ModelElement, Named

@Incubating @Deprecated public interface AssemblerSourceSet extends LanguageSourceSet
Deprecated.
The Gradle software model is deprecated and will be removed in Gradle 10. Use the new component model (e.g. cpp-application, cpp-library, swift-application, swift-library, xctest) instead.
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"
                    }
                }
            }
        }
    }
}