Is there a way to add all native targets that have...
# multiplatform
e
Is there a way to add all native targets that haven't been deprecated? I'm currently using:
Copy code
presets.withType<AbstractKotlinNativeTargetPreset<*>>().forEach {
    if(!it.konanTarget.family.isAppleFamily) {
      targetFromPreset(it)
    }
}