r4zzz4k
09/14/2018, 12:56 PMorg.jetbrains.kotlin.multiplatform
support some way of globally passing -Xuse-experimental=kotlin.Experimental
to compiler?kotlin {
fromPreset(presets.linuxX64, 'linux') {
compilations.each {
it.extraOpts.add("-Xuse-experimental=kotlin.Experimental")
}
}
}
As I'm focusing only on Native right now, I didn't look into others yet.h0tk3y
09/16/2018, 5:25 PM