So you should have:
Qt Code:
  1. LIBS += -LD:/dev/CplusPlus/DemoFutronics -lftrScanAPI
To copy to clipboard, switch view to plain text mode 
-L specifies a directory (among many) that should be searched by the linker for requested libraries
-l specifies the name of specific libraries that are requested to satisfy missing symbols in the program.

I have used the forward slash in the path to avoid the annoyance of escaping back slashes. Qmake does the right thing with these.