summaryrefslogtreecommitdiff
path: root/tests/guiapp/guiapp.pro
blob: 6ce770801d92acf3d90d1541b07eb6713f9af21c (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
28
29
30
31
32
33
34
35
QT += core gui
TEMPLATE = app

unix {
    !macx:DEFINES += HAVE_UDEV
}

INCLUDEPATH += \
    ../../include \
    ../../src

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

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

SOURCES += main.cpp\
    maindialog.cpp \
    optionsdialog.cpp \
    tracedialog.cpp
HEADERS += maindialog.h \
    optionsdialog.h \
    tracedialog.h
FORMS += maindialog.ui \
    optionsdialog.ui \
    tracedialog.ui

CONFIG(debug, debug|release) {
    DESTDIR = debug
    TARGET = guiappd
} else {
    DESTDIR = release
    TARGET = guiapp
}