36 lines
910 B
Plaintext
36 lines
910 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
id("secant.kotlin-multiplatform-build-conventions")
|
|
id("secant.dependency-conventions")
|
|
id("secant.android-build-conventions")
|
|
}
|
|
|
|
kotlin {
|
|
jvm()
|
|
sourceSets {
|
|
getByName("commonMain") {
|
|
dependencies {
|
|
api(libs.kotlinx.coroutines.core)
|
|
api(libs.kotlinx.datetime)
|
|
implementation(projects.spackleLib)
|
|
}
|
|
}
|
|
getByName("commonTest") {
|
|
dependencies {
|
|
implementation(kotlin("test"))
|
|
implementation(libs.kotlinx.coroutines.test)
|
|
}
|
|
}
|
|
getByName("jvmMain") {
|
|
dependencies {
|
|
implementation(projects.spackleLib)
|
|
}
|
|
}
|
|
getByName("jvmTest") {
|
|
dependencies {
|
|
implementation(kotlin("test"))
|
|
}
|
|
}
|
|
}
|
|
}
|