mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
28 lines
528 B
Plaintext
28 lines
528 B
Plaintext
plugins {
|
|
id("world.phantasmal.multiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":core"))
|
|
api(kotlin("test-common"))
|
|
api(kotlin("test-annotations-common"))
|
|
}
|
|
}
|
|
|
|
named("jsMain") {
|
|
dependencies {
|
|
api(kotlin("test-js"))
|
|
}
|
|
}
|
|
|
|
named("jvmMain") {
|
|
dependencies {
|
|
api(kotlin("test"))
|
|
}
|
|
}
|
|
}
|
|
}
|