This may be more of a gradle question, but maybe someone here knows this: I'm working on a little Kotlin Native project which creates a (windows) executable. I'm wondering, if I wanted to create some resource files ( e.g. a text file) to be placed in the program dir, next to the exe file, is there an easy way to do this? Or how is something like this generally done? Adding a new gradle task that depends on the build task and then run that ? ( This doc:
https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html talks about "resources" a bunch, would my text file be a resource in that sense or is that something different?)