20 lines
393 B
Kotlin
Vendored
20 lines
393 B
Kotlin
Vendored
plugins {
|
|
id("org.jetbrains.kotlin.multiplatform") version ("{{kotlin_plugin_version}}")
|
|
}
|
|
repositories {
|
|
maven("https://dl.bintray.com/kotlin/kotlin-dev")
|
|
mavenLocal()
|
|
}
|
|
|
|
kotlin {
|
|
macosX64("macos") {
|
|
binaries {
|
|
executable {
|
|
entryPoint = "sample.foo"
|
|
}
|
|
}
|
|
}
|
|
sourceSets {
|
|
val macosMain by getting {}
|
|
}
|
|
} |