kmath/kmath-gsl/build.gradle.kts

48 lines
1.2 KiB
Plaintext
Raw Normal View History

@file:Suppress("UNUSED_VARIABLE")
import kscience.kmath.gsl.codegen.matricesCodegen
2020-10-05 13:46:41 +03:00
import kscience.kmath.gsl.codegen.vectorsCodegen
plugins {
2020-10-04 10:10:53 +03:00
id("ru.mipt.npm.mpp")
}
kotlin {
explicitApiWarning()
2020-10-04 11:53:24 +03:00
val nativeTarget = when (System.getProperty("os.name")) {
"Mac OS X" -> macosX64("native")
"Linux" -> linuxX64("native")
2020-10-04 11:53:24 +03:00
else -> {
logger.warn("Current OS cannot build any of kmath-gsl targets.")
return@kotlin
}
2020-10-04 10:10:53 +03:00
}
val main by nativeTarget.compilations.getting {
cinterops {
val libgsl by creating {
includeDirs {
headerFilterOnly("/usr/include/", "/usr/local/")
}
}
}
}
sourceSets {
val nativeMain by getting {
2020-10-10 23:37:04 +03:00
val codegen by tasks.creating {
matricesCodegen(kotlin.srcDirs.first().absolutePath + "/kscience/kmath/gsl/_Matrices.kt")
vectorsCodegen(kotlin.srcDirs.first().absolutePath + "/kscience/kmath/gsl/_Vectors.kt")
}
kotlin.srcDirs(files().builtBy(codegen))
dependencies {
api(project(":kmath-core"))
}
}
}
2020-10-10 21:24:16 +03:00
}