forked from kscience/kmath
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
@file:Suppress("UNUSED_VARIABLE")
|
|
|
|
import kscience.kmath.gsl.codegen.matricesCodegen
|
|
import kscience.kmath.gsl.codegen.vectorsCodegen
|
|
|
|
plugins {
|
|
id("ru.mipt.npm.mpp")
|
|
}
|
|
|
|
kotlin {
|
|
explicitApiWarning()
|
|
|
|
val nativeTarget = when (System.getProperty("os.name")) {
|
|
// "Mac OS X" -> macosX64()
|
|
"Linux" -> linuxX64("native")
|
|
|
|
else -> {
|
|
logger.warn("Current OS cannot build any of kmath-gsl targets.")
|
|
return@kotlin
|
|
}
|
|
}
|
|
|
|
val main by nativeTarget.compilations.getting {
|
|
cinterops {
|
|
val libgsl by creating
|
|
}
|
|
}
|
|
|
|
val test by nativeTarget.compilations.getting
|
|
|
|
sourceSets {
|
|
val nativeMain by getting {
|
|
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"))
|
|
}
|
|
}
|
|
|
|
val nativeTest by getting {
|
|
dependsOn(nativeMain)
|
|
}
|
|
|
|
// main.defaultSourceSet.dependsOn(nativeMain)
|
|
// test.defaultSourceSet.dependsOn(nativeTest)
|
|
}
|
|
}
|