logplus/appDllTest/src/appDllTest.pro
2026-01-16 17:18:41 +08:00

60 lines
1.3 KiB
Prolog

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 = ../../Bin
TARGET = $$join(TARGET,,,d) #为debug版本生成的文件增加d的后缀
} else {
DESTDIR = ../../Bin
TARGET = $$join(TARGET,,,)
}
CONFIG += qt warn_off \
debug_and_release
#CONFIG += uitools
DEFINES += QT_DLL
HeadS += ../include/*.h
SOURCES += *.cpp
HEADERS += \
../include/BaseObject.h \
../include/ObjWelllog.h \
../include/ObjWelllogINP.h \
../include/ObjWelllogTABLE.h \
../include/appDllTest.h \
../include/appDllTestDialog.h
#CPATH = $$system(pwd)
# 目标文件夹
#CATEGORY = OSGDataModel
CONFIG(debug, debug|release){
LIBS += -L../../Bin -lslfiod
} else {
LIBS += -L../../Bin -lslfio
}
FORMS += \
../Resources/appDllTest.ui