enable jvm-ir

This commit is contained in:
Alexander Nozik 2021-01-18 22:25:13 +03:00
parent cdb3651b58
commit 3c38609fc1
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ plugins {
}
group = "ru.mipt.npm"
version = "0.7.3-1.4.30-RC"
version = "0.7.3-IR"
repositories {
gradlePluginPortal()

View File

@ -79,7 +79,7 @@ open class KScienceCommonPlugin : Plugin<Project> {
jvm {
compilations.all {
kotlinOptions {
// useIR = true
useIR = true
jvmTarget = KScienceVersions.JVM_TARGET.toString()
}
}
@ -134,7 +134,7 @@ open class KScienceCommonPlugin : Plugin<Project> {
tasks.apply {
withType<KotlinJvmCompile> {
kotlinOptions {
// useIR = true
useIR = true
jvmTarget = KScienceVersions.JVM_TARGET.toString()
}
}