Installing JOAL with netbeans IDE

Hi all,

quick question. How do i go about installing joal libraries to use them in my project in netbeans under windows ?

Did a lot of googling but could not find any definite answer.

thanks
-ankit

My best practice to use native libraries with netbeans:

  • Create a library for the jars (e.g. JOAL) and add the jar(s) to it
  • Create a library for the natives (e.g. JOAL.natives) and add the path where the dlls reside
  • Add the JOAL library as dependency
  • Go to the “run” section of your projecs properties and specify
-Djava.library.path="${libs.JOAL.natives.classpath}"

as JVM arguments