forked from kscience/kmath
34 lines
750 B
Plaintext
34 lines
750 B
Plaintext
|
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
jvm()
|
||
|
js()
|
||
|
|
||
|
sourceSets {
|
||
|
|
||
|
val commonMain by getting {
|
||
|
dependencies {
|
||
|
api(project(":kmath-core"))
|
||
|
}
|
||
|
}
|
||
|
val commonTest by getting {
|
||
|
dependencies {
|
||
|
implementation(kotlin("test-common"))
|
||
|
implementation(kotlin("test-annotations-common"))
|
||
|
}
|
||
|
}
|
||
|
val jvmTest by getting {
|
||
|
dependencies {
|
||
|
implementation(kotlin("test"))
|
||
|
implementation(kotlin("test-junit"))
|
||
|
}
|
||
|
}
|
||
|
val jsTest by getting {
|
||
|
dependencies {
|
||
|
implementation(kotlin("test-js"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|