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