Thanks for the reply! That was the link I was looking for.
However, I was one step prior to linking-trying to get the
compile to work, which I finally did. But I also recognized
the source of my particular problems (pun intended, I suppose):
I have Eclipse set up to separate the code into src and bin
directories. So when I set parameters for the external tools,
lejosjc couldn't find my source file, because it's one directory below
${project_loc} in the src directory.
If I change the External Tool "arguments" field to
- Code: Select all
src\${java_type_name}.java -d bin
for lejosjc, it finds the source in src, but puts class files in bin,
where I want them.
Then, of course, I have to change the settings for lejoslink and lejosdl
External Tools to look in the project's bin directory for files, and
everything should work just fine.
I realize that with examples we try to keep things simple--so you
wouldn't tell people to separate source and binary files that way.
I'm just elaborating on this because I got caught by it, and other
people might be interested.