mirror of
https://github.com/openflocon/Flocon.git
synced 2026-05-05 02:06:13 +00:00
* feature: Move analytics * feature: remote dashboard * fix: DI * feature: Dashboard * fix: DI * feature: Move files * feature: Move database * feature: Move files * feature: Move * feature: Move * feature: Move files * feature: Move files * feature: Move * feature: Move images * feature: Move sharedprefe * fix: Merge * feature: Network * fix: Network * feature: Move files * feature: Move * fix: DI * fix: DI * fix: Discussion * fix: Discussion * fix: Delete * fix: Comment * fix: Discussion * fix: Build * fix textfield * fix textfield --------- Co-authored-by: TEYSSANDIER Raphael <rteyssandier@sephora.fr> Co-authored-by: Florent Champigny <florent@bere.al>
34 lines
897 B
Kotlin
34 lines
897 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlinMultiplatform)
|
|
alias(libs.plugins.kotlinx.serialization)
|
|
}
|
|
|
|
kotlin {
|
|
|
|
jvm("desktop")
|
|
|
|
compilerOptions {
|
|
// Pour Kotlin 1.9+
|
|
freeCompilerArgs.add("-opt-in=kotlin.time.ExperimentalTime")
|
|
freeCompilerArgs.add("-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi")
|
|
freeCompilerArgs.add("-Xcontext-parameters")
|
|
freeCompilerArgs.add("-Xcontext-sensitive-resolution")
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(libs.kotlinx.coroutinesCore)
|
|
implementation(libs.kotlinx.serializationJson)
|
|
|
|
implementation(project.dependencies.platform(libs.koin.bom))
|
|
implementation(libs.koin.core)
|
|
|
|
implementation(projects.domain)
|
|
}
|
|
|
|
commonTest.dependencies {
|
|
implementation(libs.kotlin.test)
|
|
}
|
|
}
|
|
|
|
}
|