I'm using the JavaFX packager through the JavaFX-Gradle-Plugin and I need to add a couple of Wix extension libraries to be able to run my app after install.
How do I achieve that?
According to the Wix documentation, by adding -ext WixUIExtension -ext WixUtilExtension to the command line, but I don't see how to do it from the JavaFX packager nor JavaFX-Gradle-Plugin.
After looking into the responsible msi-bundler, I found this fragment:
This means
WixUtilExtensionis always added, and when having the user to choose the installation target directory, the extensionWixUIExtensiongets added too.To have the user choose the target installation directory, you have to set this inside the jfx-configuration-part:
https://github.com/FibreFoX/javafx-gradle-plugin/issues/101
Disclaimer: I'm the creator of the javafx-gradle-plugin