Reconfigure native build

This commit is contained in:
Iaroslav Postovalov 2020-10-04 14:10:53 +07:00
parent 74d226cab7
commit 5724558760
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7
2 changed files with 11 additions and 7 deletions

View File

@ -32,7 +32,7 @@ jobs:
key: ${{ runner.os }}-konan-1.4.20-eap-37
restore-keys: ${{ runner.os }}-konan-1.4.20-eap-37
- name: Build with Gradle
run: ./gradlew -Dorg.gradle.daemon=false --build-cache :kmath-gsl:cinteropLibgslLinuxX64 build
run: ./gradlew -Dorg.gradle.daemon=false --build-cache :kmath-gsl:cinteropLibgslNative build
build-osx:
runs-on: macos-latest
@ -62,4 +62,4 @@ jobs:
key: ${{ runner.os }}-konan-1.4.20-eap-37
restore-keys: ${{ runner.os }}-konan-1.4.20-eap-37
- name: Build with Gradle
run: ./gradlew -Dorg.gradle.daemon=false --build-cache :kmath-gsl:cinteropLibgslMacosX64 build
run: ./gradlew -Dorg.gradle.daemon=false --build-cache :kmath-gsl:cinteropLibgslNative build

View File

@ -1,14 +1,18 @@
@file:Suppress("UNUSED_VARIABLE")
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
plugins {
id("ru.mipt.npm.native")
id("ru.mipt.npm.mpp")
}
kotlin {
targets.withType<KotlinNativeTarget> {
compilations["main"].cinterops {
val nativeTarget = when (System.getProperty("os.name")) {
"Mac OS X" -> macosX64("native")
"Linux" -> linuxX64("native")
else -> throw GradleException("Host OS is not supported in Kotlin/Native.")
}
val main by nativeTarget.compilations.getting {
cinterops {
val libgsl by creating {
defFile("src/nativeInterop/cinterop/libgsl.def")
includeDirs { allHeaders("./src/nativeMain/resources/") }