24 lines
364 B
Kotlin
24 lines
364 B
Kotlin
|
|
plugins {
|
|
alias(libs.plugins.kotlin.multiplatform)
|
|
alias(libs.plugins.kotlinx.rpc.grpc)
|
|
}
|
|
|
|
|
|
rpc {
|
|
protoc()
|
|
}
|
|
|
|
kotlin {
|
|
jvm()
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(ktorLibs.client.core)
|
|
implementation(libs.kotlinx.rpc.grpc.client)
|
|
implementation(project(":core"))
|
|
}
|
|
|
|
}
|
|
}
|