kmath/kmath-gsl/build.gradle.kts

25 lines
552 B
Plaintext
Raw Normal View History

@file:Suppress("UNUSED_VARIABLE")
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
plugins {
id("ru.mipt.npm.native")
}
kotlin {
targets.withType<KotlinNativeTarget> {
2020-10-04 09:19:49 +03:00
compilations["main"].cinterops {
val libgsl by creating {
defFile("src/nativeInterop/cinterop/libgsl.def")
includeDirs { allHeaders("./src/nativeMain/resources/") }
}
}
}
sourceSets.commonMain {
dependencies {
api(project(":kmath-core"))
}
}
}