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{
|
|
|
|
api(kotlin("reflect"))
|
|
|
|
}
|
|
|
|
}
|
2019-06-21 12:34:04 +03:00
|
|
|
}
|