Utils/VrCommon/VrCommon.pro

35 lines
695 B
Prolog
Raw Normal View History

2026-02-19 00:45:00 +08:00
#CONFIG -= qt
2026-08-05 11:48:29 +08:00
TEMPLATE = lib
CONFIG += staticlib
CONFIG += c++17
win32:CONFIG(debug, debug|release) {
DESTDIR = $$PWD/debug
}
win32:CONFIG(release, debug|release) {
DESTDIR = $$PWD/release
}
# You can make your code fail to compile if it uses deprecated APIs.
2026-02-19 00:45:00 +08:00
# 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 += ./Inc
SOURCES += \
Src/VrCommon.cpp
HEADERS += \
Inc/VrCommon.h \
Inc/VrConfigCmd.h \
Inc/VrError.h
# Default rules for deployment.
unix {
target.path = /usr/lib
}
!isEmpty(target.path): INSTALLS += target