We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello I have a processing file that I would like to compile into a .class file. I tried exporting the application using processing itself, then I used javac in the command prompt, referencing the .java file in the source folder of the exported application folder. I got a bunch of errors displayed in cmd about how symbols in my code don't exsist. It sounds to me like the javac compiler doesnt understand processing. What do I do besides rewriting in pure java? Thanks
Answers
-cp
option.if you look in the libs directory of the exported application there's a jar file with a class in it for your sketch. you'll need that jar AND ALL THE OTHERS in the classpath in order to run it.
(if you export for linux there's a sh file which is a bit more readable, shows you what you need:
note the big classpath)