Extract JVM IR backend module out of compiler/backend

The old backend does not depend on IR modules anymore
This commit is contained in:
Alexander Udalov
2019-01-15 17:19:50 +01:00
parent ad974137b8
commit 4daee6d282
11 changed files with 47 additions and 22 deletions
+20
View File
@@ -0,0 +1,20 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":kotlin-annotations-jvm"))
compile(project(":compiler:backend"))
compile(project(":compiler:ir.tree"))
compile(project(":compiler:ir.psi2ir"))
compile(project(":compiler:ir.backend.common"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "annotations", "asm-all", rootProject = rootProject) }
}
sourceSets {
"main" {
projectDefault()
}
"test" {}
}