C shell: setenv LD_LIBRARY_PATH /abc/com/canoo/wmtrans:$LD_LIBRARY_PATH (where /abc/def must be substituted with your own path) Bash shell: export LD_LIBRARY_PATH=/abc/com/canoo/wmtrans:$LD_LIBRARY_PATH (where /abc/def must be substituted with your own path)
g++ -o CAnalyzerIntegrationDemo CAnalyzerIntegrationDemo.C -Lcom/canoo/wmtrans -lJAnalyzer
./CAnalyzerIntegrationDemo GerXYZAnalyzer.tra GerXYZAnalyzer.ftb
javac -classpath . JAnalyzerIntegrationDemo.java (the -classpath option is only needed if the current directory is not included in the CLASSPATH)
java -classpath . JAnalyzerIntegrationDemo GerXYZAnalyzer.tra GerXYZAnalyzer.ftb (the -classpath option is only needed if the current directory is not included in the CLASSPATH)