Add tests for setup native run gutters.
This commit is contained in:
+27
@@ -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 {
|
||||
}
|
||||
}
|
||||
}
|
||||
Vendored
+10
@@ -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"
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package sample
|
||||
|
||||
|
||||
fun main() {
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package sample
|
||||
|
||||
|
||||
fun <lineMarker descr="null" settings="runDebugExecutableMacos">main</lineMarker>() {}
|
||||
|
||||
fun foo() {}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package sample
|
||||
|
||||
|
||||
fun main() {
|
||||
}
|
||||
Reference in New Issue
Block a user