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

Popular posts from this blog

IF statement in MySQL trigger -

c++ - What does MSC in "// appease MSC" comments mean? -

android - MPAndroidChart - How to add Annotations or images to the chart -