Add tests for setup native run gutters.
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
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.foo"
|
||||
}
|
||||
}
|
||||
}
|
||||
sourceSets {
|
||||
val macosMain by getting {}
|
||||
}
|
||||
}
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
kotlin.import.noCommonSourceSets=true
|
||||
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"
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package sample
|
||||
|
||||
|
||||
fun main() {}
|
||||
|
||||
fun foo() {}
|
||||
Reference in New Issue
Block a user