-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusb_viewer.pro
49 lines (39 loc) · 1.24 KB
/
usb_viewer.pro
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
40
41
42
43
44
45
46
47
48
49
#-------------------------------------------------
#
# Project created by QtCreator 2016-11-23T17:33:49
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
TARGET = usb_viewer
TEMPLATE = app
SOURCES += src/firmware.cpp \
src/graphwidget.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/qcustomplot.cpp \
src/usb_service.cpp \
src/usb_thread.cpp \
src/filter/pulseoximterfilter.cpp \
src/filter/spo2filter.cpp \
src/testwidget.cpp
HEADERS += src/firmware.h \
src/graphwidget.h \
src/mainwindow.h \
src/qcustomplot.h \
src/usb_service.h \
src/usb_thread.h \
src/version.h \
src/filter/basefilter.h \
src/filter/pulseoximterfilter.h \
src/filter/spo2filter.h \
src/testwidget.h
FORMS += src/mainwindow.ui \
src/graphwidget.ui \
src/testwidget.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/libs/libusb-1.0.21/MinGW32/static -llibusb-1.0
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/libs/libusb-1.0.21/MinGW32/static -llibusb-1.0
INCLUDEPATH += src libs/libusb-1.0.21/include/libusb-1.0
DEPENDPATH += libs/libusb-1.0.21/include/libusb-1.0
RESOURCES += \
src/main.qrc