Hi, Is there a good tutorial on how to build the n...
# multiplatform
s
Hi, Is there a good tutorial on how to build the native executable for windows? tried gradlew createDistributable, gradlew packageExe and get errors in the jlink: Error: --module-path is not specified and this runtime image does not contain jmods directory. Usage: jlink <options> --module-path <modulepath> --add-modules <module>[,<module>...] Use --help for a list of possible options FIXED using jdk instead of jbr.
h
this was helpful for me: https://github.com/JetBrains/compose-multiplatform/blob/master/tutorials/Native_distributions_and_local_execution/README.md The downside is you need to run your project in the OS you want to export, like windows in this case.
👍 1
s
Thanks I had taken a look already.