74 lines
1.8 KiB
Prolog
74 lines
1.8 KiB
Prolog
QT += gui core widgets
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += staticlib
|
|
CONFIG += c++11
|
|
|
|
win32-msvc {
|
|
QMAKE_CXXFLAGS += /utf-8
|
|
}
|
|
|
|
# For Windows crash dump generation and MessageBox functions
|
|
win32-msvc {
|
|
LIBS += -lDbgHelp -luser32
|
|
}
|
|
|
|
INCLUDEPATH += $$PWD/Inc
|
|
INCLUDEPATH += $$PWD/../../Utils/VrUtils/Inc
|
|
INCLUDEPATH += $$PWD/../../Utils/VrCommon/Inc
|
|
INCLUDEPATH += $$PWD/../../Device/VrEyeDevice/Inc
|
|
INCLUDEPATH += $$PWD/../../SDK/Device/VzNLSDK/Inc
|
|
INCLUDEPATH += $$PWD/../AppCommon/Inc
|
|
INCLUDEPATH += $$PWD/../AppConfig/Inc
|
|
INCLUDEPATH += $$PWD/../../Utils/CloudUtils/Inc
|
|
INCLUDEPATH += $$PWD/../../Module/AuthModule/Inc
|
|
|
|
HEADERS += \
|
|
Inc/StyledMessageBox.h \
|
|
Inc/CrashHandler.h \
|
|
Inc/DeviceStatusWidget.h \
|
|
Inc/CommonDialogCamera.h \
|
|
Inc/CommonDialogCameraLevel.h \
|
|
Inc/DialogImageViewer.h \
|
|
Inc/AuthView.h \
|
|
Inc/DetectLogHelper.h \
|
|
Inc/DetectImageWidget.h \
|
|
Inc/HandEyeCalibWidget.h \
|
|
Inc/XyzRpyItem.h \
|
|
Inc/ResultListLayoutHelper.h \
|
|
Inc/AboutDialog.h \
|
|
Inc/NetworkConfigWidget.h
|
|
|
|
SOURCES += \
|
|
Src/StyledMessageBox.cpp \
|
|
Src/CrashHandler.cpp \
|
|
Src/DeviceStatusWidget.cpp \
|
|
Src/CommonDialogCamera.cpp \
|
|
Src/CommonDialogCameraLevel.cpp \
|
|
Src/DialogImageViewer.cpp \
|
|
Src/AuthView.cpp \
|
|
Src/DetectLogHelper.cpp \
|
|
Src/DetectImageWidget.cpp \
|
|
Src/HandEyeCalibWidget.cpp \
|
|
Src/XyzRpyItem.cpp \
|
|
Src/ResultListLayoutHelper.cpp \
|
|
Src/AboutDialog.cpp \
|
|
Src/NetworkConfigWidget.cpp
|
|
|
|
FORMS += \
|
|
DeviceStatusWidget.ui \
|
|
CommonDialogCamera.ui \
|
|
CommonDialogCameraLevel.ui \
|
|
AuthView.ui \
|
|
XyzRpyItem.ui \
|
|
AboutDialog.ui
|
|
|
|
RESOURCES += \
|
|
common_resources.qrc
|
|
|
|
# Default rules for deployment.
|
|
unix {
|
|
target.path = /usr/lib
|
|
}
|
|
!isEmpty(target.path): INSTALLS += target
|