-
- All Implemented Interfaces:
-
org.jetbrains.kotlin.gradle.dsl.KotlinArtifactConfig,org.jetbrains.kotlin.gradle.dsl.KotlinNativeArtifactConfig
public interface KotlinNativeLibraryConfig implements KotlinNativeArtifactConfig
-
-
Method Summary
Modifier and Type Method Description abstract KonanTargetgetTarget()abstract UnitsetTarget(KonanTarget target)abstract Set<NativeBuildType>getModes()abstract UnitsetModes(Set<NativeBuildType> modes)abstract BooleangetIsStatic()abstract UnitsetIsStatic(Boolean isStatic)abstract List<String>getLinkerOptions()abstract UnitsetLinkerOptions(List<String> linkerOptions)abstract StringgetArtifactName()abstract Set<Object>getModules()-
Methods inherited from class org.jetbrains.kotlin.gradle.dsl.KotlinNativeLibraryConfig
binaryOption, kotlinOptions, modes -
Methods inherited from class org.jetbrains.kotlin.gradle.dsl.KotlinNativeArtifactConfig
addModule, createArtifact, setModules -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getTarget
abstract KonanTarget getTarget()
-
getModes
abstract Set<NativeBuildType> getModes()
-
setModes
abstract Unit setModes(Set<NativeBuildType> modes)
-
getIsStatic
abstract Boolean getIsStatic()
-
setIsStatic
abstract Unit setIsStatic(Boolean isStatic)
-
getLinkerOptions
abstract List<String> getLinkerOptions()
-
setLinkerOptions
abstract Unit setLinkerOptions(List<String> linkerOptions)
-
getArtifactName
abstract String getArtifactName()
-
getModules
abstract Set<Object> getModules()
-
-
-
-