-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainApp.pro
executable file
·80 lines (60 loc) · 1.88 KB
/
mainApp.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
75
#-------------------------------------------------
#
# Project created by QtCreator 2020-11-02T22:01:40
#
#-------------------------------------------------
QT += core gui serialport network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = myApp
TEMPLATE = app
DEFINES += QT_DEPRECATED_WARNINGS
CONFIG += c++11
include(subWindows/subWinAbout/subWinAbout.pri)
include(subWindows/subWinCamera/subWinCamera.pri)
include(subWindows/subWinCar/subWinCar.pri)
include(subWindows/subWinMonitor/subWinMonitor.pri)
include(subWindows/subWinSetting/subWinSetting.pri)
include(subWindows/subWinUserManage/subWinUserManage.pri)
include(comm/comm.pri)
include(raspiDevice/raspiDevice.pri)
#添加包含路劲( 头文件)
INCLUDEPATH += \
inputWin \
raspiDevice \
subWindows
#添加源文件
SOURCES += \
main.cpp \
mainwindow.cpp \
status.cpp \
inputWin/inputwin.cpp \
inputWin/face.cpp \
inputWin/fpc1020a.cpp \
inputWin/password.cpp \
#添加头文件
HEADERS += \
mainwindow.h \
status.h \
inputWin/inputwin.h \
inputWin/face.h \
inputWin/fpc1020a.h \
inputWin/password.h \
#界面文件
FORMS += \
inputWin/inputwin.ui \
mainwindow.ui \
status.ui \
INCLUDEPATH += /usr/include/opencv \
/usr/include/opencv2
LIBS += -lwiringPi
LIBS += /usr/lib/arm-linux-gnueabihf/libopencv_highgui.so \
/usr/lib/arm-linux-gnueabihf/libopencv_core.so \
/usr/lib/arm-linux-gnueabihf/libopencv_imgcodecs.so \
/usr/lib/arm-linux-gnueabihf/libopencv_imgproc.so \
/usr/lib/arm-linux-gnueabihf/libopencv_videoio.so
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
resource.qrc