I have launch4j configure for my project. I used it back, when i developed on windowsXP, where it worked. Now i need it to build on mac as well:
My build.xml:
<
I also had this problems and I fixed it by modifying the launch4j code.
In the Class Launch4JTask.java I replaced the line
final Builder b = new Builder(Log.getAntLog());
with this one
final Builder b = new Builder(Log.getAntLog(), new File(getOwningTarget().getProject().getProperty("launch4j.bindir")));
Through this change i could specify the path to Launch4j inside my ant build script like that
Greetings, -chris-