kmath/kmath-dimensions/build.gradle.kts

20 lines
333 B
Plaintext
Raw Normal View History

2019-06-21 12:34:04 +03:00
plugins {
2019-12-09 19:52:00 +03:00
id("scientifik.mpp")
2019-06-21 12:34:04 +03:00
}
description = "A proof of concept module for adding typ-safe dimensions to structures"
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-core"))
}
}
2020-04-27 15:43:03 +03:00
jvmMain {
dependencies {
2020-04-27 15:43:03 +03:00
api(kotlin("reflect"))
}
}
}