Reputation: 5110
I want to make a portable javafx application with JRE inside for Windows systems. I can make a jar and I aware about javapackage tool, but I can't find a simple way to create a portable application and wrap it in exe.
Upvotes: 4
Views: 1482
Reputation: 650
You could use Inno Setup for it, it's really simple. And even integrated if you are under Eclipse
I found all the informations about how to use it here http://code.makery.ch/library/javafx-8-tutorial/part7/
Basically, you download it from http://www.jrsoftware.org/isdl.php and install it. Then you just need to set its path in your environment variables so that eclipse knows how to run it
Upvotes: 1