1QT += serialbus widgets
2requires(qtConfig(combobox))
3
4TARGET = can
5TEMPLATE = app
6
7SOURCES += \
8    bitratebox.cpp \
9    connectdialog.cpp \
10    main.cpp \
11    mainwindow.cpp \
12    sendframebox.cpp
13
14HEADERS += \
15    bitratebox.h \
16    connectdialog.h \
17    mainwindow.h \
18    sendframebox.h
19
20FORMS   += mainwindow.ui \
21    connectdialog.ui \
22    sendframebox.ui
23
24RESOURCES += can.qrc
25
26target.path = $$[QT_INSTALL_EXAMPLES]/serialbus/can
27INSTALLS += target
28