Changes for upcoming GSL extension project #148

Merged
CommanderTvis merged 98 commits from gsl-experiment into dev 2021-02-19 13:34:27 +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/") }
}
} }
} }
} }