compiler/ir/backend.common is NOT a part of compiler/backend-common

This commit is contained in:
Dmitry Petrov
2018-05-21 14:49:28 +03:00
parent 25a66916a6
commit 353076f596
3 changed files with 22 additions and 1 deletions
-1
View File
@@ -18,7 +18,6 @@ dependencies {
sourceSets {
"main" {
projectDefault()
java.srcDir("../ir/backend.common/src")
}
"test" {}
}
@@ -0,0 +1,20 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
jvmTarget = "1.6"
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compile(project(":compiler:backend-common"))
compile(project(":compiler:ir.tree"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}