hi folks,

i'm trying to deploy my application using shared library method (so the binary will get lesser size and easier to release), but i'm getting error when running the application in PC without Qt installed. I've run ldd ./appname which return the needed libraries, so i copy the libraries beside my application (which i do when releasing in windows) but still the same error occurred. Something like
error while loading shared libraries: libQtGui.so.4: cannot open shared object file: No such file or directory
libQtGui.so.4 is beside my app but it seems like only a link. where should i copy and place the right .so to run my app?

thank you very much.