v0.2.0 #206

Merged
altavir merged 210 commits from dev into master 2021-02-21 16:33:25 +03:00
Showing only changes of commit 2a325b4bc8 - Show all commits

View File

@ -6,14 +6,21 @@ import ru.mipt.npm.gradle.Maturity
plugins {
id("ru.mipt.npm.mpp")
id("de.undercouch.download")
}
kotlin {
explicitApiWarning()
data class DownloadLinks(val gsl: String)
lateinit var downloadLinks: DownloadLinks
val nativeTarget = when (System.getProperty("os.name")) {
// "Mac OS X" -> macosX64()
"Linux" -> linuxX64()
"Linux" -> {
downloadLinks = DownloadLinks(gsl = "")
linuxX64()
}
else -> {
logger.warn("Current OS cannot build any of kmath-gsl targets.")