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.
29 lines
557 B
29 lines
557 B
3 years ago
|
plugins {
|
||
3 years ago
|
kotlin("multiplatform")
|
||
3 years ago
|
id("org.jetbrains.compose")
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
3 years ago
|
mavenLocal()
|
||
3 years ago
|
mavenCentral()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
js(IR) {
|
||
|
nodejs {}
|
||
|
browser() {}
|
||
|
binaries.executable()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
val commonMain by getting {
|
||
|
dependencies {
|
||
|
implementation(kotlin("stdlib-common"))
|
||
|
implementation(compose.runtime)
|
||
|
implementation(project(":lib"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|