Package org.jetbrains.kotlin.gradle.dsl
Interface KotlinCommonCompilerToolOptions
-
- All Implemented Interfaces:
public interface KotlinCommonCompilerToolOptions
Common options for all Kotlin platforms' compilations and tools.
-
-
Method Summary
Modifier and Type Method Description abstract Property<Boolean>
getAllWarningsAsErrors()
Report an error if there are any warnings. abstract Property<Boolean>
getSuppressWarnings()
Don't generate any warnings. abstract Property<Boolean>
getVerbose()
Enable verbose logging output. abstract ListProperty<String>
getFreeCompilerArgs()
A list of additional compiler argumentsDefault value: emptyList<String>() -
-
Method Detail
-
getAllWarningsAsErrors
@Input() abstract Property<Boolean> getAllWarningsAsErrors()
Report an error if there are any warnings.
Default value: false
-
getSuppressWarnings
@Internal() abstract Property<Boolean> getSuppressWarnings()
Don't generate any warnings.
Default value: false
-
getVerbose
@Internal() abstract Property<Boolean> getVerbose()
Enable verbose logging output.
Default value: false
-
getFreeCompilerArgs
@Input() abstract ListProperty<String> getFreeCompilerArgs()
A list of additional compiler arguments
Default value: emptyList<String>()
-
-
-
-