22 lines
337 B
Plaintext
22 lines
337 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.mpp")
|
|
}
|
|
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
kscience{
|
|
useCoroutines()
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":dataforge-device-core"))
|
|
api("io.ktor:ktor-network:$ktorVersion")
|
|
}
|
|
}
|
|
|
|
}
|
|
} |