mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-10-31 21:33:46 +00:00
17 lines
318 B
Groovy
17 lines
318 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api project(":plaguposter.posts")
|
|
}
|
|
}
|
|
}
|
|
}
|