15 lines
217 B
Kotlin
15 lines
217 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":kotlin-native:backend.native", "compilerApiElements"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
sourcesJar()
|
|
javadocJar() |