19 lines
380 B
Groovy
19 lines
380 B
Groovy
description = 'Merge utility for Kotlin Standard Library for JS'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-compiler:$bootstrapKotlinVersion"
|
|
}
|
|
|
|
sourceSets {
|
|
main.kotlin.srcDirs += 'src'
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
// Do not report prerelease errors
|
|
freeCompilerArgs = ["-Xskip-metadata-version-check"]
|
|
}
|
|
}
|