mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-04 15:23:46 +00:00
19 lines
451 B
Groovy
19 lines
451 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api project(":plaguposter.common")
|
|
api project(":plaguposter.triggers.timer")
|
|
api project(":plaguposter.triggers.selector_with_timer")
|
|
}
|
|
}
|
|
}
|
|
}
|