summaryrefslogtreecommitdiffstats
path: root/examples/consoleportinfo/consoleportinfo.pro
blob: 9bdd996ea96781c878bf7d03715adb95e14d0174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
TEMPLATE = app
CONFIG += console
QT -= gui
OBJECTS_DIR = obj
MOC_DIR = moc

linux*:DEFINES += HAVE_LIBUDEV

INCLUDEPATH += \
    ../../include

HEADERS += \
    ../../include/serialport.h \
    ../../include/serialportinfo.h

include(../../src/src.pri)

SOURCES += main.cpp

CONFIG(debug, debug|release) {
    DESTDIR = debug
    TARGET = consoleinfod
} else {
    DESTDIR = release
    TARGET = consoleinfo
}