api / org.gradle.language.swift / SwiftSharedLibrary

SwiftSharedLibrary

@Incubating interface SwiftSharedLibrary : SwiftBinary, ComponentWithSharedLibrary, ComponentWithRuntimeUsage, ComponentWithLinkUsage, ComponentWithOutputs

A shared library built from Swift source.

Since
4.2

Inherited Functions

getCompileModules

abstract fun getCompileModules(): FileCollection

Returns the modules to use to compile this binary. Includes the module file of this binary's dependencies.

getCompileTask

abstract fun getCompileTask(): Provider<SwiftCompile>

Returns the compile task for this binary.

getLinkElements

abstract fun getLinkElements(): Provider<Configuration>

Returns the outgoing link elements of this component.

getLinkLibraries

abstract fun getLinkLibraries(): FileCollection

Returns the link libraries to use to link this binary. Includes the link libraries of the component's dependencies.

getLinkTask

abstract fun getLinkTask(): Provider<out LinkSharedLibrary>

Returns the link task for the shared library.

getModule

abstract fun getModule(): Provider<String>

Returns the name of the Swift module that this binary defines.

getModuleFile

abstract fun getModuleFile(): Provider<RegularFile>

Returns the module file for this binary.

getOutputs

abstract fun getOutputs(): FileCollection

Returns the outputs produced for this component.

getRuntimeElements

abstract fun getRuntimeElements(): Provider<Configuration>

Returns the outgoing runtime elements of this component.

getRuntimeLibraries

abstract fun getRuntimeLibraries(): FileCollection

Returns the runtime libraries required by this binary. Includes the runtime libraries of the component's dependencies.

getSourceCompatibility

abstract fun getSourceCompatibility(): Provider<SwiftVersion>

Returns the Swift language level to use to compile the source files.

getSwiftSource

abstract fun getSwiftSource(): FileCollection

Returns the Swift source files of this binary.

getTargetPlatform

abstract fun getTargetPlatform(): SwiftPlatform

{@inheritDoc}

isTestable

abstract fun isTestable(): Boolean

Returns true if this binary has testing enabled.