1 | initial version |
I usually compile programms by exporting the path with:
export LD_LIBRARY_PATH=/usr/local/lib
and then compile with
g++ pkg-config --cflags --libs opencv
test.cpp -o test
So far I haven't figured out a way to do it otherwise. Hope that might help, good luck.
2 | No.2 Revision |
I usually compile programms by exporting the path with:
export LD_LIBRARY_PATH=/usr/local/lib
and then compile with
g++ pkg-config --cflags --libs opencv
test.cpp -o test
So far I haven't figured out a way to do it otherwise. Hope that might help, good luck.
P.S. ups, you're using windows. Since then I think the commands won't work. I don't know how to run this on windows, sorry.