Add using -Xinline-classes by default in IDE intentions

^KT-34209 Fixed
This commit is contained in:
Victor Petukhov
2020-02-17 18:17:11 +03:00
parent 79d7babb57
commit bf23b39d76
5 changed files with 42 additions and 5 deletions
@@ -0,0 +1,8 @@
buildscript {
repositories {
jcenter()
mavenCentral()
}
}
apply(plugin ="kotlin")
@@ -0,0 +1,14 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
buildscript {
repositories {
jcenter()
mavenCentral()
}
}
apply(plugin ="kotlin")
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
freeCompilerArgs = listOf("-Xinline-classes")
}