summaryrefslogtreecommitdiffstats
path: root/examples/serialport/creaderasync/creaderasync.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/serialport/creaderasync/creaderasync.pro')
-rw-r--r--examples/serialport/creaderasync/creaderasync.pro20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/serialport/creaderasync/creaderasync.pro b/examples/serialport/creaderasync/creaderasync.pro
new file mode 100644
index 00000000..27b17dc9
--- /dev/null
+++ b/examples/serialport/creaderasync/creaderasync.pro
@@ -0,0 +1,20 @@
+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