mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-21 21:20:45 +00:00
21 lines
335 B
Prolog
21 lines
335 B
Prolog
QT = core
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
|
QT += serialport
|
|
} else {
|
|
include($$QTSERIALPORT_PROJECT_ROOT/src/serialport/qt4support/serialport.prf)
|
|
}
|
|
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
TARGET = creaderasync
|
|
TEMPLATE = app
|
|
|
|
HEADERS += \
|
|
serialportreader.h
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
serialportreader.cpp
|