106 lines
3.0 KiB
Prolog
106 lines
3.0 KiB
Prolog
QT += core gui
|
||
QT += serialport
|
||
QT += network
|
||
|
||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||
|
||
TEMPLATE = app
|
||
|
||
CONFIG += c++11 console
|
||
QMAKE_CXXFLAGS += /utf-8
|
||
|
||
# You can make your code fail to compile if it uses deprecated APIs.
|
||
# In order to do so, uncomment the following line.
|
||
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||
|
||
INCLUDEPATH += $$PWD/../VrCommon/Inc
|
||
INCLUDEPATH += $$PWD/../VrUtils/Inc
|
||
INCLUDEPATH += $$PWD/Presenter/Inc
|
||
INCLUDEPATH += $$PWD/Utils/Inc
|
||
|
||
INCLUDEPATH += $$PWD/../VrConfig/Inc
|
||
INCLUDEPATH += $$PWD/../VrEyeDevice/Inc
|
||
|
||
SOURCES += \
|
||
BeltTearingAlgo.cpp \
|
||
beltTearingDetection.cpp \
|
||
main.cpp \
|
||
BeltTearingPresenter.cpp
|
||
|
||
HEADERS += \
|
||
SG_baseAlgo_Export.h \
|
||
SG_baseDataType.h \
|
||
SG_errCode.h \
|
||
beltTearingDetection_Export.h \
|
||
BeltTearingAlgo.h \
|
||
BeltTearingPresenter.h
|
||
|
||
FORMS +=
|
||
|
||
win32:CONFIG(debug, debug|release) {
|
||
LIBS += -L../VrUtils/debug -lVrUtils
|
||
LIBS += -L../VrEyeDevice/debug -lVrEyeDevice
|
||
}else:win32:CONFIG(release, debug|release){
|
||
LIBS += -L../VrUtils/release -lVrUtils
|
||
LIBS += -L../VrEyeDevice/release -lVrEyeDevice
|
||
}else:unix:!macx {
|
||
# Unix/Linux平台库链接(包括交叉编译)
|
||
# 注意链接顺序:依赖关系从高到低
|
||
LIBS += -L../VrUtils -lVrUtils
|
||
LIBS += -L../VrEyeDevice -lVrEyeDevice
|
||
|
||
# 添加系统库依赖
|
||
LIBS += -lpthread
|
||
}
|
||
|
||
#linux下的为unix ,windows下用的win32
|
||
|
||
INCLUDEPATH += ../SDK/VzNLSDK/_Inc
|
||
INCLUDEPATH += ../SDK/VzNLSDK/Inc
|
||
|
||
win32:CONFIG(release, debug|release): {
|
||
LIBS += -L$$PWD/../SDK/VzNLSDK/Windows/x64/Release
|
||
LIBS += -lVzKernel -lVzNLDetect -lVzNLGraphics
|
||
}
|
||
else:win32:CONFIG(debug, debug|release): {
|
||
LIBS += -L$$PWD/../SDK/VzNLSDK/Windows/x64/Debug
|
||
LIBS += -lVzKerneld -lVzNLDetectd -lVzNLGraphicsd
|
||
}
|
||
else:unix:!macx: {
|
||
LIBS += -L$$PWD/../SDK/VzNLSDK/Arm/aarch64
|
||
LIBS += -lVzEyeSecurityLoader-shared -lVzKernel -lVzNLDetect -lVzNLGraphics
|
||
}
|
||
|
||
|
||
# 算法
|
||
INCLUDEPATH += ../SDK/OpenCV320/include
|
||
win32:CONFIG(release, debug|release): {
|
||
LIBS += -L$$PWD/../SDK/OpenCV320/Windows/vc14/Release -lopencv_world320
|
||
}
|
||
else:win32:CONFIG(debug, debug|release): {
|
||
LIBS += -L$$PWD/../SDK/OpenCV320/Windows/vc14/Release -lopencv_world320
|
||
}
|
||
else:unix:!macx: {
|
||
LIBS += -L$$PWD/../SDK/OpenCV320/Arm/aarch64 -lopencv_core -lopencv_imgproc -lopencv_highgui
|
||
}
|
||
|
||
# 添加libmodbus依赖
|
||
win32 {
|
||
LIBS += -lws2_32
|
||
LIBS += Advapi32.lib
|
||
}
|
||
|
||
# Default rules for deployment.
|
||
unix {
|
||
target.path = /usr/lib
|
||
# Link real-time library for POSIX shared memory functions
|
||
LIBS += -lrt
|
||
}
|
||
!isEmpty(target.path): INSTALLS += target
|
||
|
||
|
||
# Default rules for deployment.
|
||
qnx: target.path = /tmp/$${TARGET}/bin
|
||
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
||
!isEmpty(target.path): INSTALLS += target
|