mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
26 lines
441 B
Plaintext
26 lines
441 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
js {
|
|
browser {}
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":core"))
|
|
api(kotlin("test-common"))
|
|
api(kotlin("test-annotations-common"))
|
|
}
|
|
}
|
|
|
|
val jsMain by getting {
|
|
dependencies {
|
|
api(kotlin("test-js"))
|
|
}
|
|
}
|
|
}
|
|
}
|