I\'m having a hell of a time finding documentation which clearly explains how to use a static library in Qt Creator.
I\'ve created and compiled my static library usi
LIBS += -L[path to lib] -l[name of lib]
Note! that filename of lib: lib[nameOfLib].a and you have to pass only original part -l[nameOfLib]