-
- All Implemented Interfaces:
-
org.jetbrains.kotlin.gradle.dsl.KotlinCommonOptions,org.jetbrains.kotlin.gradle.dsl.KotlinCommonToolOptions
public interface KotlinMultiplatformCommonOptions implements KotlinCommonOptions
-
-
Method Summary
Modifier and Type Method Description abstract BooleangetAllWarningsAsErrors()abstract UnitsetAllWarningsAsErrors(Boolean allWarningsAsErrors)abstract StringgetApiVersion()abstract UnitsetApiVersion(String apiVersion)abstract List<String>getFreeCompilerArgs()abstract UnitsetFreeCompilerArgs(List<String> freeCompilerArgs)abstract StringgetLanguageVersion()abstract UnitsetLanguageVersion(String languageVersion)abstract BooleangetSuppressWarnings()abstract UnitsetSuppressWarnings(Boolean suppressWarnings)abstract BooleangetUseK2()abstract UnitsetUseK2(Boolean useK2)abstract BooleangetVerbose()abstract UnitsetVerbose(Boolean verbose)-
-
Method Detail
-
getAllWarningsAsErrors
abstract Boolean getAllWarningsAsErrors()
-
setAllWarningsAsErrors
abstract Unit setAllWarningsAsErrors(Boolean allWarningsAsErrors)
-
getApiVersion
abstract String getApiVersion()
-
setApiVersion
abstract Unit setApiVersion(String apiVersion)
-
getFreeCompilerArgs
abstract List<String> getFreeCompilerArgs()
-
setFreeCompilerArgs
abstract Unit setFreeCompilerArgs(List<String> freeCompilerArgs)
-
getLanguageVersion
abstract String getLanguageVersion()
-
setLanguageVersion
abstract Unit setLanguageVersion(String languageVersion)
-
getSuppressWarnings
abstract Boolean getSuppressWarnings()
-
setSuppressWarnings
abstract Unit setSuppressWarnings(Boolean suppressWarnings)
-
getVerbose
abstract Boolean getVerbose()
-
setVerbose
abstract Unit setVerbose(Boolean verbose)
-
-
-
-