kmath/kmath-dimensions/build.gradle.kts

14 lines
289 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 {
implementation(kotlin("reflect"))
api(project(":kmath-core"))
}
}
}