Reputation: 25
I'm using Install4j to create a installer of a JavaFx application for OSX and it must include a bundle JRE (jre 1.7_0_51
).
I need to move the file /lib/jfxrt.jar
to /lib/ext/jfxrt.jar
to force Java to load the JavaFX libs.
Is there a way to do this?
UPDATE:
I've forget to add a little info about the bundle, the file jfxrt.jar is inside the bundle.
Upvotes: 1
Views: 87
Reputation: 48005
In install4j, you can use a "Move files and directories" action to move a file.
Upvotes: 1
Reputation: 1296
run this:
$: mkdir /lib/ext
$: mv /lib/jfxrt.jar /lib/ext/jfxrt.jar
Upvotes: 0