blob: 7de873a351871d9cfb686b3fd372b75104bac4da [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
}
dependencies {
compileOnly(intellijCore())
implementation(project(":compiler:cli"))
implementation(project(":compiler:cli-common"))
implementation(project(":compiler:ir.backend.common"))
implementation(project(":compiler:ir.backend.native"))
implementation(project(":compiler:util"))
implementation(project(":kotlin-native:backend.native"))
implementation(project(":native:frontend.native"))
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
sourcesJar()
javadocJar()
optInToK1Deprecation()