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.
 
 
 
 

20 lines
449 B

plugins {
kotlin("multiplatform")
alias(libs.plugins.compose.compiler)
}
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(project(":common"))
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test"))
implementation(libs.kotlinx.coroutines.test)
}
}
}
}