I am making a game using lwjgl, and am trying to figure out how to export it into a single runnable jar or exe.
I saw that i can use jarsplice to make exe's fairly easily so i followed the instructions,
- I exported a jar from eclipse(not a runnable)
- Then added that jar, all the jars the game uses, and the natives it needs.
- When i try to create an exe in jarsplice, it says error opening zip file.
I am pretty sure that when eclipse makes a jar it packages all the folders in the project into it as zip folders.
So should i have eclipse make a jar with only the classes and not the resource folder, then use that with jarsplice?
And if so where would i have to put that folder and not have it accessible by end users?