I am trying to install preon and run it within IntelliJ.
I have downloaded the source code from https://github.com/preon/preon.
Then I open the project with IntelliJ.
Then I download pecia and import it as a module into the preon project.
Then I try to run the BitmapFileTest program at ...preon-master/preon-samples/preon-sample-bmp/src/test/java/org/codehaus/preon/sample/bmp/BitmapFileTest.java
Here are the first few errors that I get:
...preon-master/preon-el/src/main/java/org/codehaus/preon/el/Expressions.java
- Error:(151, 24) java: cannot find symbol symbol: class LimboWalker location: class org.codehaus.preon.el.Expressions
- Error:(154, 9) java: cannot find symbol symbol: class LimboLexer location: class org.codehaus.preon.el.Expressions
- Error:(154, 32) java: cannot find symbol symbol: class LimboLexer location: class org.codehaus.preon.el.Expressions
- Error:(156, 9) java: cannot find symbol symbol: class LimboParser location: class org.codehaus.preon.el.Expressions
- Error:(156, 34) java: cannot find symbol symbol: class LimboParser location: class org.codehaus.preon.el.Expressions
- Error:(160, 9) java: cannot find symbol symbol: class LimboWalker location: class org.codehaus.preon.el.Expressions
- Error:(160, 55) java: cannot find symbol symbol: class LimboWalker location: package org.codehaus.preon.el
For some reason the compiler cannot find the Limbo classes in its own project.
What do I need to do to be able to build and run this sample project?