Reputation: 1
Hello I built an application a couple of years ago that I compiled from netbeans into a windows exe with package as in the netbeans IDE. Recently I had to make a few changes and now it throws an error about iscc and candle when I try to run the same package as.
I found a tutorial on the subject (https://netbeans.org/kb/docs/java/native_pkg.html) on the netbeans site and verified that iscc and candle both worked from the command line. I have also tried a few different versions of netbeans, java, inno, wix, etc. all with zero luck. If someone can shed some helpful light on this subject I would be appreciative.
The error:
Execute failed: java.io.IOException: Cannot run program "iscc" (in directory "C:\Users\jemmett.CELLTRON\Documents\NetBeansProjects\IOBoardApp"): CreateProcess error=2, The system cannot find the file specified C:\Users\jemmett.CELLTRON\Documents\NetBeansProjects\IOBoardApp\nbproject\jfx-impl.xml:3415: The following error occurred while executing this line: C:\Users\jemmett.CELLTRON\Documents\NetBeansProjects\IOBoardApp\nbproject\jfx-impl.xml:3582: Error: JavaFX native packager requires external Inno Setup 5+ tools installed and included on PATH to create EXE installer. See http://www.jrsoftware.org/ BUILD FAILED (total time: 1 second)
Upvotes: 0
Views: 1774
Reputation: 5472
Do you have Inno Setup installed?
Is Inno Setup configured correctly? (against Netbeans)
It looks like you are trying to call Inno Setup compiler (ISCC) but its destination is unknown for the IDE.
Upvotes: 0