I'm trying to deploy ma JavaFX Project as an msi installer wit WiX Toolset with e(fx)clipse.
I created an build.xml with packaging type .msi, added a package folder to the build folder with my icons in it and also added
<path id="fxant">
<filelist>
...
<file name="${basedir}"/>
</filelist>
</path>
to make the icons available (according to http://code.makery.ch/library/javafx-8-tutorial/part7/)
Of course i installed WiX Toolset 3.10 and added it to the Path enviroment variable.
If I run the build.xml script now it gives me an msi installer, but if i start it it doesn't do anything.
I want to know if it is possible to have a custom .wxs template.