22 lines
283 B
Groovy
Vendored
22 lines
283 B
Groovy
Vendored
plugins {
|
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
|
}
|
|
|
|
group = 'testGroupId'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
kotlin {
|
|
linuxX64()
|
|
sourceSets {
|
|
linuxX64Main {
|
|
|
|
}
|
|
linuxX64Test {
|
|
|
|
}
|
|
}
|
|
} |