mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-22 05:30:44 +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 = cwriterasync
|
|
TEMPLATE = app
|
|
|
|
HEADERS += \
|
|
serialportwriter.h
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
serialportwriter.cpp
|