this might be a quite easy question, but I'm really getting crazy, becausse I don't get what I want working. I try so simply include a framework in my project, but I have no idea how... I'm using IntelliJ IDEA and I'm working on a little game and I want to include JGAP in it. I therefore downloaded the zip file and extracted it to my folder, where the rest of the project is as well, so I now have the folder structure with the bin-files, the src-files (and of course some project files). In the src-folder, i put the folder, that contains the unzipped content of JGAP. Now how am I able to include that correctly? Do I have to tell that to the IDE? Or do I have to write this in the code? import org.jpag.*
does not seem to work.
Including framework in java - IntelliJ
247 views Asked by user5638730 At
1
With IntelliJ, you can add external dependencies ( jgap.jar in your case) with following procedure:
That's it:
import org.jpag.*
should work now :)