forked from kscience/visionforge
37 lines
899 B
Plaintext
37 lines
899 B
Plaintext
import ru.mipt.npm.gradle.KScienceVersions.coroutinesVersion
|
|
|
|
plugins {
|
|
id("ru.mipt.npm.mpp")
|
|
}
|
|
|
|
kscience {
|
|
useSerialization()
|
|
}
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":visionforge-core"))
|
|
}
|
|
}
|
|
jvmMain {
|
|
dependencies {
|
|
api("org.fxyz3d:fxyz3d:0.5.2") {
|
|
exclude(module = "slf4j-simple")
|
|
}
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-javafx:${coroutinesVersion}")
|
|
implementation("eu.mihosoft.vrl.jcsg:jcsg:0.5.7") {
|
|
exclude(module = "slf4j-simple")
|
|
}
|
|
}
|
|
}
|
|
jsMain {
|
|
dependencies {
|
|
implementation(npm("three", "0.114.0"))
|
|
implementation(npm("three-csg-ts", "1.0.1"))
|
|
}
|
|
}
|
|
}
|
|
} |