File: master.pro

package info (click to toggle)
qtserialport-opensource-src 5.15.15-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,488 kB
  • sloc: cpp: 6,958; ansic: 12; makefile: 11
file content (19 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
greaterThan(QT_MAJOR_VERSION, 4) {
    QT       += widgets serialport
    requires(qtConfig(combobox))
} else {
    include($$QTSERIALPORT_PROJECT_ROOT/src/serialport/qt4support/serialport.prf)
}

TARGET = master
TEMPLATE = app

HEADERS += \
    dialog.h

SOURCES += \
    main.cpp \
    dialog.cpp

target.path = $$[QT_INSTALL_EXAMPLES]/serialport/master
INSTALLS += target