v0.2.0 #206

Merged
altavir merged 210 commits from dev into master 2021-02-21 16:33:25 +03:00
Showing only changes of commit ef31cfcd65 - Show all commits

View File

@ -8,12 +8,10 @@ plugins {
kotlin { kotlin {
targets.withType<KotlinNativeTarget> { targets.withType<KotlinNativeTarget> {
compilations["main"].apply { compilations["main"].cinterops {
cinterops { val libgsl by creating {
val libgsl by creating { defFile("src/nativeInterop/cinterop/libgsl.def")
defFile("src/nativeInterop/cinterop/libgsl.def") includeDirs { allHeaders("./src/nativeMain/resources/") }
includeDirs { allHeaders("./src/nativeMain/resources/") }
}
} }
} }
} }