I’ve got an example directory with multiple Kotlin/Native files, each with a
fun main() {}
. Is there an easy way with Gradle to create executables for each file? So one Kotlin/Native Gradle project can produce multiple executables?
I’ve tried creating a separate target for each file, but it’s really messy - with conflicting Configurations and overlapping sources…