Include *.dll

Discussion about Irrlicht's Java wrapper
Post Reply
uncle
Posts: 2
Joined: Tue Sep 25, 2007 5:18 pm

Include *.dll

Post by uncle »

Hi, is there any way to include all the *.dll file within a singel jar? I need to have just one jar file with my project.

/Per-Erik
jirr
Posts: 36
Joined: Sat Feb 19, 2005 8:05 am

Re: Include *.dll

Post by jirr »

uncle wrote:Hi, is there any way to include all the *.dll file within a singel jar? I need to have just one jar file with my project.

/Per-Erik
dlls and jars are at least for two differnt purposes: dlls contain native code and jars compiled class files-
The only reason for putting dll files into jas is for distributing jirr for applets or webstart. Otherwise no dll should be placed within jars.

On the other hand if you want all class files in one jar - that is no big deal. You may unzip jirr's jar, add your own class files and put the result into a new jar.
Post Reply