Radoslaw Juszczyk
04/21/2023, 9:31 AMfromFiles (see here) and then you can load them in JVM code using `System.loadLibrary("LIBRARYNAME")`_
In the link (see here) it gives an example to place it like that:
compose.desktop {
application {
. . .
fromFiles(project.fileTree("libs/") { include("**/*.jar") })
I am trying to include some .dylib (of course I removed { include("**/*.jar") } part) files for my project but the contents of libs/ do not seem to be copied to the resulting .app image.
Any ideas how to get it working?Michael Paus
04/21/2023, 10:48 AM{ include("**/*.dylib") }?Radoslaw Juszczyk
04/21/2023, 11:58 AMRadoslaw Juszczyk
04/21/2023, 12:03 PMRadoslaw Juszczyk
04/21/2023, 4:41 PM