By following this link, Cant use shared libraries in Qt project, I add libkmlbase and libkmldom libraries in Qt project pro file
LIBS += -L"/usr/local/lib/" \
-lkmlbase\
-lkmldom\
those libraries are installed in /usr/local/lib
However, when executing, I have "error while loading shared libraries: libkmlbase.so.0: cannot open shared object file: No such file or directory" Even I copy the .so files to the executable folder.
Any suggestion? Thank you for precious time on my question.