extraOpts
Adds additional options that are passed to the cinterop tool.
Usage example
kotlin {
linuxX64() {
compilations.getByName("main") {
cinterops {
val cinterop by creating {
defFile(project.file("custom. def"))
extraOpts("-nopack")
}
}
}
}
}
Content copied to clipboard
Parameters
values
Additional cinterop tool options that are not present in CInteropSettings
Adds additional options that are passed to the cinterop tool.
Usage example
kotlin {
linuxX64() {
compilations.getByName("main") {
cinterops {
val cinterop by creating {
defFile(project.file("custom. def"))
extraOpts(listOf("-nopack"))
}
}
}
}
}
Content copied to clipboard
Parameters
values
List of extra options