37 lines
836 B
Prolog
37 lines
836 B
Prolog
|
|
# WorkpieceProjectConfig.pro
|
||
|
|
|
||
|
|
TEMPLATE = lib
|
||
|
|
CONFIG += staticlib
|
||
|
|
CONFIG += c++11
|
||
|
|
|
||
|
|
TARGET = WorkpieceProjectConfig
|
||
|
|
|
||
|
|
INCLUDEPATH += ./Inc
|
||
|
|
INCLUDEPATH += ./_Inc
|
||
|
|
|
||
|
|
SOURCES += \
|
||
|
|
Src/VrConfig.cpp
|
||
|
|
|
||
|
|
HEADERS += \
|
||
|
|
Inc/IVrConfig.h \
|
||
|
|
_Inc/VrConfig.h
|
||
|
|
|
||
|
|
INCLUDEPATH += $$PWD/../../../VrCommon/Inc
|
||
|
|
INCLUDEPATH += $$PWD/../../../VrUtils/Inc
|
||
|
|
INCLUDEPATH += $$PWD/../../../VrUtils/tinyxml2
|
||
|
|
INCLUDEPATH += $$PWD/../../../AppUtils/AppCommon/Inc
|
||
|
|
INCLUDEPATH += $$PWD/../../../SDK/VzNLSDK/Inc
|
||
|
|
|
||
|
|
win32:CONFIG(debug, debug|release) {
|
||
|
|
LIBS += -L../../../VrUtils/Debug -lVrUtils
|
||
|
|
}else:win32:CONFIG(release, debug|release){
|
||
|
|
LIBS += -L../../../VrUtils/release -lVrUtils
|
||
|
|
}else:unix:!macx {
|
||
|
|
LIBS += -L../../../VrUtils -lVrUtils
|
||
|
|
}
|
||
|
|
|
||
|
|
unix {
|
||
|
|
target.path = /usr/lib
|
||
|
|
}
|
||
|
|
!isEmpty(target.path): INSTALLS += target
|