Ah, I went to your website and found
$ git clone
http://github.com/iphands/PulseOx.git
$ cd PulseOx/workspace/PulseOx/
$ mkdir -p jars
$ ln -s /path_to_your_swt.jar ./jars/
$ ln -s /path_to_your_log4j.jar ./jars/
$ ant
$ java -jar pulseox.jar
So now the links do appear in the jars directory. Now when I build, I get 42 errors. At least now I know I didn't have the one link I thought I did. Do I have to install apache or something?
dave@METROPOLIS:~/PulseOx/workspace/PulseOx$ ant
Buildfile: build.xml
compile:
[javac] Compiling 9 source files to /home/dave/PulseOx/workspace/PulseOx/bin
[javac] /home/dave/PulseOx/workspace/PulseOx/src/org/ahands/ian/pulseox/FileListener.java:11: package org.apache.log4j does not exist
[javac] import org.apache.log4j.Logger;
[javac] ^
[javac] /home/dave/PulseOx/workspace/PulseOx/src/org/ahands/ian/pulseox/FileListener.java:26: cannot find symbol
[javac] symbol : class Logger
[javac] location: class org.ahands.ian.pulseox.FileListener
[javac] Logger logger = Logger.getLogger(FileListener.class);
...
BUILD FAILED
/home/dave/PulseOx/workspace/PulseOx/build.xml:12: Compile failed; see the compiler error output for details.
Total time: 1 second
Thank you for your help.
Dave