logplus/appDllTest/src/appDllTest.pro

56 lines
1.2 KiB
Prolog
Raw Normal View History

2026-01-16 17:18:41 +08:00
TEMPLATE = lib
TARGET = appDllTest
DEFINES += _TIMESPEC_DEFINED
QT += core \
gui \
opengl
INCLUDEPATH += ../../common \
../include \
../../OSGParts/include \
../../Slfio/include \
../../BaseFun/include \
../../PAI/include \
../../PAI/IOService/include \
../../PAI/Module/include \
../../PAI/SysUtility/utils/include \
../../PAI/ObjectModel/ObjectModel/include \
../../PAI/ObjectModel/ObjectModelBase/include \
d:/OSG3.0.1/include \
OBJECTS_DIR = ../obj
CONFIG(debug, debug|release){
DESTDIR = $$PWD/../../Bin
2026-01-16 17:18:41 +08:00
TARGET = $$join(TARGET,,,d) #为debug版本生成的文件增加d的后缀
} else {
DESTDIR = $$PWD/../../BinR
2026-01-16 17:18:41 +08:00
TARGET = $$join(TARGET,,,)
}
CONFIG += qt warn_off \
debug_and_release
#CONFIG += uitools
DEFINES += QT_DLL
# HeadS += ../include/*.h
2026-01-16 17:18:41 +08:00
SOURCES += *.cpp
HEADERS += \
../include/appDllTest.h \
../include/appDllTestDialog.h
#CPATH = $$system(pwd)
# 目标文件夹
#CATEGORY = OSGDataModel
CONFIG(debug, debug|release){
LIBS += -L$$PWD/../../Bin -lslfiod
2026-01-16 17:18:41 +08:00
} else {
LIBS += -L$$PWD/../../BinR -lslfio
2026-01-16 17:18:41 +08:00
}
FORMS += \
../Resources/appDllTest.ui