Is the .lib file from a Windows library? If so, then it isn't useable under Linux.
You will need to find/build the library in the Linux environment.
thanks for answer
this is my LIBS += -L/home/nthung/NVR_Demo_04_06_2010/NVR 8_6_V3/usr/lib -llibxvidcore it still don't run in the L/home/nthung/NVR_Demo_04_06_2010/NVR 8_6_V3/usr/lib I have 4 files
libxvidcore.a
libxvidcore.so
libxvidcore.so.4
libxvidcore.so.4.2\thaks
The lib part of the library file name is implied. You also need to quote the space in the path.
Qt Code:
LIBS += $$quote(-L/home/nthung/NVR_Demo_04_06_2010/NVR 8_6_V3/usr/lib) -lxvidcoreTo copy to clipboard, switch view to plain text mode
Bookmarks