-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenose_online.pro
74 lines (64 loc) · 1.82 KB
/
enose_online.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#-------------------------------------------------
#
# Project created by QtCreator 2016-04-09T03:13:37
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = enose_online
TEMPLATE = app
target.files = enose_online
target.path = /root/qi_enose_online/bin
INSTALLS = target
#关闭release中qDebug的输出
DEFINES += QT_NO_DEBUG_OUTPUT
SOURCES += main.cpp\
mainwindow.cpp \
common.c \
GPIO.c \
i2c.c \
sht21.c \
spidev.c \
uart.c \
myinputpanel.cpp \
myinputpanelcontext.cpp \
qcommon.cpp \
stm32_spislave.c \
beep.cpp \
thread_dust_uart.cpp \
thread_logic_control.cpp \
uart_plot_widget.cpp \
thread_sensor_PRU.cpp \
pru_plot_widget.cpp \
sht21_plot_widget.cpp \
air_quality_plot_widget.cpp \
thread_sht21_air.cpp \
queue.cpp
HEADERS += mainwindow.h \
common.h \
GPIO.h \
i2c.h \
sht21.h \
spidev.h \
uart.h \
myinputpanel.h \
myinputpanelcontext.h \
qcommon.h \
stm32_spislave.h \
beep.h \
thread_dust_uart.h \
thread_logic_contrl.h \
uart_plot_widget.h \
thread_sensor_PRU.h \
pru_plot_widget.h \
sht21_plot_widget.h \
air_quality_plot_widget.h \
thread_sht21_air.h \
queue.h
FORMS += mainwindow.ui \
myinputpanelform.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/am335x_pru_package-master/pru_sw/app_loader/lib/release/ -lprussdrvd
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/am335x_pru_package-master/pru_sw/app_loader/lib/debug/ -lprussdrvd
else:unix: LIBS += -L$$PWD/am335x_pru_package-master/pru_sw/app_loader/lib/ -lprussdrvd
INCLUDEPATH += $$PWD/am335x_pru_package-master/pru_sw/app_loader/include
DEPENDPATH += $$PWD/am335x_pru_package-master/pru_sw/app_loader/include