2019-08-04 11:32:19 +03:00
|
|
|
import org.openjfx.gradle.JavaFXOptions
|
2019-12-24 22:09:39 +03:00
|
|
|
import scientifik.useSerialization
|
2019-08-04 11:32:19 +03:00
|
|
|
|
2019-03-08 11:55:01 +03:00
|
|
|
plugins {
|
2019-06-30 14:35:54 +03:00
|
|
|
id("scientifik.mpp")
|
2019-08-04 11:32:19 +03:00
|
|
|
id("org.openjfx.javafxplugin")
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
|
|
|
|
2019-12-24 22:09:39 +03:00
|
|
|
useSerialization()
|
|
|
|
|
2019-03-08 11:55:01 +03:00
|
|
|
kotlin {
|
2019-09-25 19:29:49 +03:00
|
|
|
jvm {
|
2019-08-04 11:02:36 +03:00
|
|
|
withJava()
|
|
|
|
}
|
2019-03-08 11:55:01 +03:00
|
|
|
sourceSets {
|
2019-08-04 11:02:36 +03:00
|
|
|
commonMain {
|
2019-03-08 11:55:01 +03:00
|
|
|
dependencies {
|
|
|
|
api(project(":dataforge-vis-common"))
|
|
|
|
}
|
|
|
|
}
|
2019-09-25 19:29:49 +03:00
|
|
|
jvmMain {
|
2019-08-04 11:02:36 +03:00
|
|
|
dependencies {
|
2020-02-26 23:03:27 +03:00
|
|
|
api("org.fxyz3d:fxyz3d:0.5.2") {
|
2019-12-22 20:56:19 +03:00
|
|
|
exclude(module = "slf4j-simple")
|
|
|
|
}
|
2019-12-15 22:15:14 +03:00
|
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-javafx:${Scientifik.coroutinesVersion}")
|
2019-12-22 20:56:19 +03:00
|
|
|
implementation("eu.mihosoft.vrl.jcsg:jcsg:0.5.7") {
|
|
|
|
exclude(module = "slf4j-simple")
|
|
|
|
}
|
2019-08-04 11:02:36 +03:00
|
|
|
}
|
|
|
|
}
|
2019-09-25 19:29:49 +03:00
|
|
|
jsMain {
|
2019-08-04 11:02:36 +03:00
|
|
|
dependencies {
|
2019-12-24 14:14:10 +03:00
|
|
|
// api(project(":wrappers"))
|
2019-08-04 11:02:36 +03:00
|
|
|
implementation(npm("three", "0.106.2"))
|
2019-08-17 14:22:39 +03:00
|
|
|
implementation(npm("@hi-level/three-csg", "1.0.6"))
|
2019-08-04 11:02:36 +03:00
|
|
|
}
|
|
|
|
}
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-04 11:32:19 +03:00
|
|
|
configure<JavaFXOptions> {
|
|
|
|
modules("javafx.controls")
|
|
|
|
}
|
|
|
|
|