mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
20 lines
337 B
Plaintext
20 lines
337 B
Plaintext
plugins {
|
|
id("world.phantasmal.multiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation(project(":core"))
|
|
}
|
|
}
|
|
|
|
commonTest {
|
|
dependencies {
|
|
implementation(project(":test-utils"))
|
|
}
|
|
}
|
|
}
|
|
}
|