summaryrefslogtreecommitdiffstats
path: root/examples/serialbus/can/can.pro
blob: fa0df66df48f8a34a6fdf582f984e5e2dcd576ab (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
36
37
38
39
QT += serialbus widgets
requires(qtConfig(combobox))

TARGET = can
TEMPLATE = app

SOURCES += \
    bitratebox.cpp \
    canbusdeviceinfobox.cpp \
    canbusdeviceinfodialog.cpp \
    connectdialog.cpp \
    main.cpp \
    mainwindow.cpp \
    receivedframesmodel.cpp \
    receivedframesview.cpp \
    sendframebox.cpp

HEADERS += \
    bitratebox.h \
    canbusdeviceinfobox.h \
    canbusdeviceinfodialog.h \
    common.h \
    connectdialog.h \
    mainwindow.h \
    receivedframesmodel.h \
    receivedframesview.h \
    sendframebox.h

FORMS += \
    canbusdeviceinfobox.ui \
    canbusdeviceinfodialog.ui \
    connectdialog.ui \
    mainwindow.ui \
    sendframebox.ui

RESOURCES += can.qrc

target.path = $$[QT_INSTALL_EXAMPLES]/serialbus/can
INSTALLS += target