api / org.gradle.language.swift / SwiftExecutable

SwiftExecutable

@Incubating interface SwiftExecutable : SwiftBinary, ComponentWithExecutable, ComponentWithInstallation, ComponentWithOutputs

An executable built from Swift source.

Since
4.2

Functions

getDebuggerExecutableFile

abstract fun getDebuggerExecutableFile(): Provider<RegularFile>

Returns the executable file to use with a debugger for this binary.

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.

getExecutableFile

abstract fun getExecutableFile(): Provider<RegularFile>

Returns the executable file to produce.

getInstallDirectory

abstract fun getInstallDirectory(): Provider<Directory>

Returns the installation directory.

getInstallTask

abstract fun getInstallTask(): Provider<out InstallExecutable>

Returns the install task.

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 LinkExecutable>

Returns the link task for the executable.

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.

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.