2026-03-26 08:30:31 +08:00

50 lines
1.1 KiB
Prolog
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#CONFIG -= qt
TEMPLATE = lib
CONFIG += staticlib
CONFIG += c++11
# 编码设置
win32-msvc {
QMAKE_CXXFLAGS += /utf-8
}
TARGET = HolePitPositionConfig
INCLUDEPATH += ./Inc
INCLUDEPATH += ./_Inc
SOURCES += \
Src/VrConfig.cpp
HEADERS += \
Inc/IVrConfig.h \
_Inc/VrConfig.h
#utils
INCLUDEPATH += $$PWD/../../../Utils/VrUtils/Inc
INCLUDEPATH += $$PWD/../../../Utils/VrUtils/tinyxml2
# AppCommon - 公共配置结构体
INCLUDEPATH += $$PWD/../../../AppUtils/AppCommon/Inc
# AppConfig - 公共配置XML读写工具
INCLUDEPATH += $$PWD/../../../AppUtils/AppConfig/Inc
# 算法头文件workpieceHolePositioning 算法结构体定义)
INCLUDEPATH += $$PWD/../../../AppAlgo/workpieceHolePositioning/Inc
win32:CONFIG(debug, debug|release) {
LIBS += -L../../../Utils/VrUtils/Debug -lVrUtils
}else:win32:CONFIG(release, debug|release){
LIBS += -L../../../Utils/VrUtils/release -lVrUtils
}else:unix:!macx {
LIBS += -L../../../Utils/VrUtils -lVrUtils
}
# Default rules for deployment.
unix {
target.path = /usr/lib
}
!isEmpty(target.path): INSTALLS += target