52 lines
1.2 KiB
Prolog
52 lines
1.2 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/../../VrUtils/Inc
|
|
INCLUDEPATH += $$PWD/../../VrCommon/Inc
|
|
INCLUDEPATH += $$PWD/../../VrEyeDevice/Inc
|
|
INCLUDEPATH += $$PWD/../../SDK/VzNLSDK/Inc
|
|
INCLUDEPATH += $$PWD/../../SDK/workpieceCornerExtraction/Inc
|
|
INCLUDEPATH += $$PWD/../AppCommon/Inc
|
|
INCLUDEPATH += $$PWD/../CloudUtils/Inc
|
|
|
|
HEADERS += \
|
|
Inc/StyledMessageBox.h \
|
|
Inc/CrashHandler.h \
|
|
Inc/DeviceStatusWidget.h \
|
|
Inc/CommonDialogCamera.h \
|
|
Inc/CommonDialogCameraLevel.h
|
|
|
|
SOURCES += \
|
|
Src/StyledMessageBox.cpp \
|
|
Src/CrashHandler.cpp \
|
|
Src/DeviceStatusWidget.cpp \
|
|
Src/CommonDialogCamera.cpp \
|
|
Src/CommonDialogCameraLevel.cpp
|
|
|
|
FORMS += \
|
|
DeviceStatusWidget.ui \
|
|
CommonDialogCamera.ui \
|
|
CommonDialogCameraLevel.ui
|
|
|
|
RESOURCES += \
|
|
common_resources.qrc
|
|
|
|
# Default rules for deployment.
|
|
unix {
|
|
target.path = /usr/lib
|
|
}
|
|
!isEmpty(target.path): INSTALLS += target
|