Flocon/FloconDesktop/domain/build.gradle.kts
Florent CHAMPIGNY 8c6ce2e244
refact: [NETWORK] format before saving (#286)
Co-authored-by: Florent Champigny <florent@bere.al>
2025-10-01 23:00:58 +02:00

31 lines
797 B
Kotlin

plugins {
alias(libs.plugins.kotlinMultiplatform)
}
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.dateTime)
implementation(project.dependencies.platform(libs.koin.bom))
implementation(libs.koin.core)
}
commonTest.dependencies {
implementation(libs.kotlin.test)
}
}
}