28 lines
632 B
Plaintext
28 lines
632 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.mpp")
|
|
id("ru.mipt.npm.publish")
|
|
}
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation(project(":dataforge-device-core"))
|
|
implementation(project(":dataforge-device-tcp"))
|
|
implementation("io.ktor:ktor-client-core:$ktorVersion")
|
|
}
|
|
}
|
|
jvmMain {
|
|
dependencies {
|
|
implementation("io.ktor:ktor-client-cio:$ktorVersion")
|
|
}
|
|
}
|
|
jsMain {
|
|
dependencies {
|
|
|
|
}
|
|
}
|
|
}
|
|
} |