edvin / fxlauncher

Auto updating launcher for JavaFX Applications
Apache License 2.0
715 stars 107 forks source link

Heap size change #97

Closed Priebojp closed 6 years ago

Priebojp commented 6 years ago

Hello, Is there a way to change the init and max heap size of launched application? like "-Xms512m -Xmx4g" Thank you.

edvin commented 6 years ago

Yes, javapackager supports the jvmOptions parameter where you can pass this:

-BjvmOptions=-Xms512m -Xmx4g
Priebojp commented 6 years ago

Thank you.