java - Multiple directories in -Djava.library.path -
how can point 2 differents java.library.path
in eclipse project - run configurations? need these 2 libraries:
-djava.library.path=/opt/hdf-java/build/bin -djava.library.path=/opt/opencv-2.4.10/build/lib
regards.
on linux, use colon :
separator (as classpath option) in:
-djava.library.path=/opt/hdf-java/build/bin:/opt/opencv-2.4.10/build/lib
Comments
Post a Comment