Hello! I've spent a little while trying to install qwt and I've run into something strange.
I am running OSX mavericks, Qt 5.5, trying to install qwt 6.1.2

Every time I try and compile through Qt creator, I get a "framework not found qwt". I know I linked correctly,
following the format as set out by the Qt Documentation.
Qt Code:
  1. QMAKE_LFLAGS += -F/usr/local/qwt-6.1.1/lib/
  2. LIBS += -framework qwt
To copy to clipboard, switch view to plain text mode 
The strange part is, when I go to usr/local/qwt-6.1.2/lib/ , it is empty. There was a .framework file there and now there is not.

Here is my .pro file
Qt Code:
  1. QT += core gui
  2. QT += widgets
  3. CONFIG += c++11
  4. CONFIG += qwt
  5. DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
  6.  
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8.  
  9. TARGET = myAPP
  10. TEMPLATE = app
  11.  
  12. SOURCES += main.cpp\
  13. mainwindow.cpp
  14.  
  15. HEADERS += mainwindow.h
  16.  
  17. FORMS += mainwindow.ui
  18.  
  19. INCLUDEPATH += /usr/local/qwt-6.1.1/src/
  20. include(/usr/local/qwt-6.1.1/qwt.prf)
  21. QMAKE_LFLAGS += -F/usr/local/qwt-6.1.1/lib/
  22. LIBS += -framework qwt
To copy to clipboard, switch view to plain text mode 

Any help would be greatly appreciated.