rmui.pro 675 B

12345678910111213141516171819202122232425262728
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2016-01-24T19:39:27
  4. #
  5. #-------------------------------------------------
  6. QT += core gui serialport
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = rmui
  9. TEMPLATE = app
  10. SOURCES += main.cpp\
  11. mainwindow.cpp
  12. HEADERS += mainwindow.h
  13. FORMS += mainwindow.ui
  14. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../opt/qwt/lib/release/ -lqwt
  15. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../opt/qwt/lib/debug/ -lqwt
  16. else:unix: LIBS += -L/opt/qwt/lib/ -lqwt
  17. INCLUDEPATH += $$PWD/3rdparty/qwt/qwt/src
  18. DEPENDPATH += $$PWD/3rdparty/qwt/qwt/src