So you should have:
-L specifies a directory (among many) that should be searched by the linker for requested librariesQt Code:
LIBS += -LD:/dev/CplusPlus/DemoFutronics -lftrScanAPITo copy to clipboard, switch view to plain text mode
-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.
Bookmarks