Package org.jetbrains.kotlin.gradle.dsl
Interface KotlinNativeCompilerOptions
-
- All Implemented Interfaces:
-
org.jetbrains.kotlin.gradle.dsl.KotlinCommonCompilerOptions
,org.jetbrains.kotlin.gradle.dsl.KotlinCommonCompilerToolOptions
public interface KotlinNativeCompilerOptions implements KotlinCommonCompilerOptions
Compiler options for Kotlin Native.
-
-
Method Summary
Modifier and Type Method Description abstract Property<String>
getModuleName()
Specify a name for the compilation module. -
Methods inherited from class org.jetbrains.kotlin.gradle.dsl.KotlinCommonCompilerOptions
getApiVersion, getLanguageVersion, getOptIn, getProgressiveMode, getUseK2
-
Methods inherited from class org.jetbrains.kotlin.gradle.dsl.KotlinCommonCompilerToolOptions
getAllWarningsAsErrors, getFreeCompilerArgs, getSuppressWarnings, getVerbose
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getModuleName
@Optional()@Input() abstract Property<String> getModuleName()
Specify a name for the compilation module.
Default value: null
-
-
-
-