forked from kscience/kmath
20 lines
257 B
Plaintext
20 lines
257 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
}
|
|
|
|
kscience{
|
|
jvm()
|
|
js()
|
|
native()
|
|
wasm()
|
|
}
|
|
|
|
kotlin.sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(projects.kmath.kmathCore)
|
|
api(kotlin("test"))
|
|
}
|
|
}
|
|
}
|