You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1011 B
40 lines
1011 B
2 years ago
|
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
id("org.jetbrains.compose")
|
||
|
}
|
||
|
|
||
|
@OptIn(org.jetbrains.kotlin.gradle.kpm.external.ExternalVariantApi::class)
|
||
|
fun org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension.configureDefaultTargets() {
|
||
|
jvm("desktop")
|
||
|
ios()
|
||
|
iosArm64()
|
||
|
iosSimulatorArm64()
|
||
|
iosX64()
|
||
|
macosX64()
|
||
|
macosArm64()
|
||
|
// We use linux agents on CI. So it doesn't run the tests, but it builds the klib anyway which is time consuming.
|
||
|
if (project.isInIdea) mingwX64()
|
||
|
linuxX64()
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
if (project.isFailingJsCase) {
|
||
|
configureJsTargets()
|
||
|
} else {
|
||
|
configureDefaultTargets()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
val commonMain by getting {
|
||
|
dependencies {
|
||
|
implementation(compose.runtime)
|
||
|
implementation(getCommonLib())
|
||
|
implementation(getLibDependencyForMain())
|
||
|
}
|
||
|
}
|
||
|
val commonTest by getting {
|
||
|
configureCommonTestDependencies()
|
||
|
}
|
||
|
}
|
||
|
}
|