logplus/OSGDataModel/src/OSGDataModel.pro

47 lines
887 B
Prolog
Raw Normal View History

2025-10-29 17:23:30 +08:00
TEMPLATE = lib
TARGET = OSGDataModel
DEFINES += OSGDataModel_LIB
QT += core \
gui \
opengl
INCLUDEPATH += ../../common \
../include \
../../OSGParts/include \
../../Slfio/include \
../../BaseFun/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
2025-11-10 16:35:40 +08:00
HEADERS += \
../include/BaseObject.h \
../include/ObjWelllog.h \
../include/ObjWelllogTABLE.h
2025-10-29 17:23:30 +08:00
#CPATH = $$system(pwd)
# 目标文件夹
#CATEGORY = OSGDataModel
CONFIG(debug, debug|release){
LIBS += -L../../Bin -lslfiod
} else {
LIBS += -L../../Bin -lslfio
}