visionforge/dataforge-vis-spatial/build.gradle.kts

36 lines
705 B
Plaintext
Raw Normal View History

2019-03-08 11:55:01 +03:00
plugins {
2019-06-30 14:35:54 +03:00
id("scientifik.mpp")
2019-03-08 11:55:01 +03:00
}
2019-08-04 11:02:36 +03:00
scientifik{
serialization = true
}
2019-03-08 11:55:01 +03:00
kotlin {
2019-08-04 11:02:36 +03:00
jvm{
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-08-04 11:02:36 +03:00
jvmMain{
dependencies {
}
}
jsMain{
dependencies {
api("info.laht.threekt:threejs-wrapper:0.106-npm-3")
implementation(npm("three", "0.106.2"))
implementation(npm("@hi-level/three-csg"))
implementation(npm("style-loader"))
implementation(npm("element-resize-event"))
}
}
2019-03-08 11:55:01 +03:00
}
}