Deleted
General and Desktop
5
Posts
4
Posters
2.1k
Views
1
Watching
-
Deleted
-
Hi Chris!
Does this help? http://stackoverflow.com/questions/718447/adding-external-library-into-qt-creator-project
-
No, "include" used to include other project files ***.pri.
all your need is
@
INCLUDEPATH += where-is-your-library-header
LIBS += full-path-of-your-library
@
And Of Course, your can add above two lines to a .pri file, then include that .pri file to your pro file.
Maybe this is useful for you: https://code.google.com/p/qextserialport/wiki/HowToUseLibrary
-
Deleted