Changes for upcoming GSL extension project #148

Merged
CommanderTvis merged 98 commits from gsl-experiment into dev 2021-02-19 13:34:27 +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.")