This commit is contained in:
Ugljesa Jovanovic 2020-05-28 23:54:51 +02:00 committed by Ugljesa Jovanovic
parent 11c872fe28
commit 8b91cf41ea
No known key found for this signature in database
GPG Key ID: 178E6DFCECCB0E0F

View File

@ -191,9 +191,10 @@ kotlin {
targets.withType<KotlinNativeTarget> {
println("Target $name")
compilations.getByName("main") {
println("Setting cinterop for $name")
defaultSourceSet.dependsOn(nativeMain)
if (this@withType.name.contains("ios").not()) {
println("Setting cinterop for $this@withType.name")
val libsodiumCinterop by cinterops.creating {
defFile(project.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${project.rootDir}/sodiumWrapper/include/")