Add tests for setup native run gutters.

This commit is contained in:
Konstantin Tskhovrebov
2020-03-25 15:33:18 +03:00
parent 39e1f03cd1
commit d61e40e49b
10 changed files with 194 additions and 0 deletions
@@ -0,0 +1,27 @@
plugins {
id("org.jetbrains.kotlin.multiplatform") version ("{{kotlin_plugin_version}}")
}
repositories {
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/kotlin/kotlin-dev")
mavenLocal()
}
kotlin {
macosX64("macos") {
binaries {
executable {
entryPoint = "sample.main"
}
}
}
sourceSets {
commonMain {
dependencies {
implementation(kotlin("stdlib-common"))
}
}
val macosMain by getting {
}
}
}
@@ -0,0 +1,10 @@
pluginManagement {
repositories {
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/kotlin/kotlin-dev")
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "test"
@@ -0,0 +1,5 @@
package sample
fun main() {
}
@@ -0,0 +1,6 @@
package sample
fun <lineMarker descr="null" settings="runDebugExecutableMacos">main</lineMarker>() {}
fun foo() {}
@@ -0,0 +1,5 @@
package sample
fun main() {
}