build: use Kotlin's new JVM IR backend (#1335)

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-03-01 13:34:49 +05:30 committed by GitHub
parent f1981c2cde
commit 64fbd2ed44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,6 +64,7 @@ internal fun Project.configureForAllProjects() {
jvmTarget = JavaVersion.VERSION_1_8.toString()
freeCompilerArgs = freeCompilerArgs + additionalCompilerArgs
languageVersion = "1.4"
useIR = true
}
}
tasks.withType<Test> {