kmath/kmath-dimensions/build.gradle.kts

14 lines
288 B
Plaintext
Raw Normal View History

2019-06-21 12:34:04 +03:00
plugins {
`npm-multiplatform`
}
description = "A proof of concept module for adding typ-safe dimensions to structures"
kotlin.sourceSets {
commonMain {
dependencies {
implementation(kotlin("reflect"))
api(project(":kmath-core"))
}
}
}