32 lines
701 B
Text
32 lines
701 B
Text
|
|
plugins {
|
||
|
|
id(ThunderbirdPlugins.Library.kmp)
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "net.thunderbird.core.common"
|
||
|
|
}
|
||
|
|
|
||
|
|
kotlin {
|
||
|
|
sourceSets {
|
||
|
|
commonMain.dependencies {
|
||
|
|
implementation(projects.core.logging.implLegacy)
|
||
|
|
implementation(projects.core.logging.api)
|
||
|
|
implementation(projects.core.logging.implFile)
|
||
|
|
}
|
||
|
|
commonTest.dependencies {
|
||
|
|
implementation(projects.core.testing)
|
||
|
|
}
|
||
|
|
jvmMain.dependencies {
|
||
|
|
implementation(libs.androidx.annotation)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
compilerOptions {
|
||
|
|
freeCompilerArgs.addAll(
|
||
|
|
listOf(
|
||
|
|
"-Xexpect-actual-classes",
|
||
|
|
),
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|