mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-22 05:30:44 +00:00
27 lines
445 B
Prolog
27 lines
445 B
Prolog
greaterThan(QT_MAJOR_VERSION, 4) {
|
|
QT += widgets serialport
|
|
} else {
|
|
include($$QTSERIALPORT_PROJECT_ROOT/src/serialport/qt4support/serialport.prf)
|
|
}
|
|
|
|
TARGET = terminal
|
|
TEMPLATE = app
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
mainwindow.cpp \
|
|
settingsdialog.cpp \
|
|
console.cpp
|
|
|
|
HEADERS += \
|
|
mainwindow.h \
|
|
settingsdialog.h \
|
|
console.h
|
|
|
|
FORMS += \
|
|
mainwindow.ui \
|
|
settingsdialog.ui
|
|
|
|
RESOURCES += \
|
|
terminal.qrc
|