566f97ae3e
Add a new module 'backend.jvm.entrypoint' which depends on psi2ir and contains code that runs psi2ir + JVM IR backend with serialization implementations. Hopefully this will allow to compile these modules in parallel and reduce the build time.
23 lines
631 B
Kotlin
23 lines
631 B
Kotlin
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.backend.common"))
|
|
api(project(":compiler:backend.common.jvm"))
|
|
compileOnly(project(":compiler:ir.tree.impl"))
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "asm-all", "guava", rootProject = rootProject) }
|
|
compileOnly(intellijDep()) { includeJars("trove4j", rootProject = rootProject) }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {
|
|
projectDefault()
|
|
}
|
|
"test" {}
|
|
}
|