diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-03-01 15:54:54 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-03-01 15:54:54 +0530 |
commit | ea9ef4af243c9c06e72a0f536da933a805f43a96 (patch) | |
tree | d4a2767984fb85cf3cfdfcb926820d4187ff240e /ui/build.gradle | |
parent | b8870f359956f2d2ed279d973d39962ca784c0fe (diff) |
build: upgrade Kotlin and turn on IR compiler
Kotlin has been building a new JVM backend for a while now
and it is finally in Beta, scheduled to hit stable in Kotlin 1.4.50.
This is the time to enable it and report any bugs we hit, before it
becomes the default.
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'ui/build.gradle')
-rw-r--r-- | ui/build.gradle | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/build.gradle b/ui/build.gradle index 6c58deca..6bf39bfa 100644 --- a/ui/build.gradle +++ b/ui/build.gradle @@ -84,5 +84,6 @@ tasks.withType(JavaCompile) { tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { kotlinOptions { jvmTarget = JavaVersion.VERSION_1_8 + useIR = true } } |