12345678910111213141516171819202122232425262728 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2016-01-24T19:39:27
- #
- #-------------------------------------------------
- QT += core gui serialport
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- TARGET = rmui
- TEMPLATE = app
- SOURCES += main.cpp\
- mainwindow.cpp
- HEADERS += mainwindow.h
- FORMS += mainwindow.ui
- win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../opt/qwt/lib/release/ -lqwt
- else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../opt/qwt/lib/debug/ -lqwt
- else:unix: LIBS += -L/opt/qwt/lib/ -lqwt
- INCLUDEPATH += $$PWD/3rdparty/qwt/qwt/src
- DEPENDPATH += $$PWD/3rdparty/qwt/qwt/src
|