blob: fd3797f601fe5066461d83b09bec48b861b70ae0 [file] [log] [blame]
plugins {
kotlin("multiplatform")
}
kotlin {
jvm()
js {
binaries.executable()
}
@Suppress("UNUSED_VARIABLE")
sourceSets {
val commonMain by getting {
dependencies {
implementation(kotlinStdlib())
}
}
val jvmMain by getting {
}
val jsMain by getting {
}
}
}
dependencies {
implicitDependenciesOnJdkVariantsOfBootstrapStdlib(project)
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
tasks.register("distAnnotations") {
dependsOn("jvmJar", "jsJar")
}