I am creating a setup using Javafx native bundle.
I have to perform some actions while installing the application.
I am able to add batch file in installation folder using this code.
<fx:resources>
<fx:fileset dir="${basedir}/${dist.dir}"
includes="*.jar"/>
<fx:fileset dir="${basedir}/${dist.dir}"
includes="lib/*.jar"/>
<fx:fileset dir="${basedir}"
includes="preference/*.*"/>
</fx:resources>
But, my question is how can I execute the same file during installation?
As I know javafx uses Inno setup for the same.
So,I took a look at the Executing installed batch file in Inno Setup. But how can I add run entry using Javafx native build.