Hi, all:

How can I setup the .pro file to make sure I can link with those static libraries?

For instance, in my case, my compilation gave me the following error message


Qt Code:
  1. cannot find -lutils
To copy to clipboard, switch view to plain text mode 

In fact, there is a
Qt Code:
  1. libutils.a
To copy to clipboard, switch view to plain text mode 
right there.



What's in my .pro file is like:
Qt Code:
  1. LIBS += -L/usr/local/lib \
  2. -L../utils/bin/debug \
  3. -lutils \
To copy to clipboard, switch view to plain text mode 

Well, is
Qt Code:
  1. -lutils \
To copy to clipboard, switch view to plain text mode 
the right way to link static libraries?


How to link those static libraries produced by my own code?

Cheers
JIA