60 lines
1.4 KiB
Prolog
60 lines
1.4 KiB
Prolog
TEMPLATE = lib
|
|
TARGET = OSGDataModel
|
|
DEFINES += OSGDataModel_LIB
|
|
DEFINES += _TIMESPEC_DEFINED
|
|
QT += core \
|
|
gui \
|
|
opengl
|
|
INCLUDEPATH += ../../common \
|
|
../include \
|
|
../../OSGParts/include \
|
|
../../Slfio/include \
|
|
../../BaseFun/include \
|
|
../../Workflow/include \
|
|
../../Workflow/WFEngine/IOService/include \
|
|
../../Workflow/WFEngine/Module/include \
|
|
../../Workflow/WFCrystal/SysUtility/utils/include \
|
|
../../Workflow/WFEngine/ObjectModel/ObjectModel/include \
|
|
../../Workflow/WFEngine/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 \
|
|
../../common/geometryutils.cpp
|
|
HEADERS += \
|
|
../include/BaseObject.h \
|
|
../include/ObjWelllog.h \
|
|
../include/ObjWelllogINP.h \
|
|
../include/ObjWelllogTABLE.h \
|
|
../include/ObjWelllogWavefile.h \
|
|
../include/WellLogWorkflowDataModel.h
|
|
|
|
#CPATH = $$system(pwd)
|
|
# 目标文件夹
|
|
#CATEGORY = OSGDataModel
|
|
CONFIG(debug, debug|release){
|
|
LIBS += -L../../Bin -lslfiod
|
|
LIBS += -L../../Bin -lWFEngined
|
|
} else {
|
|
LIBS += -L../../Bin -lslfio
|
|
LIBS += -L../../Bin -lWFEngine
|
|
}
|