mirror of
https://github.com/jlengrand/ktor.git
synced 2026-03-10 08:31:20 +00:00
18 lines
396 B
Kotlin
18 lines
396 B
Kotlin
import org.jetbrains.kotlin.gradle.plugin.*
|
|
import org.jetbrains.kotlin.gradle.plugin.mpp.*
|
|
|
|
description = "Ktor network utilities"
|
|
|
|
val ideaActive: Boolean by project.extra
|
|
val nativeCompilations: List<KotlinNativeCompilation> by project.extra
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":ktor-utils"))
|
|
}
|
|
}
|
|
}
|
|
}
|