43 lines
781 B
Prolog
43 lines
781 B
Prolog
|
|
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
|
||
|
|
|
||
|
|
#CPATH = $$system(pwd)
|
||
|
|
# 目标文件夹
|
||
|
|
#CATEGORY = OSGDataModel
|
||
|
|
CONFIG(debug, debug|release){
|
||
|
|
LIBS += -L../../Bin -lslfiod
|
||
|
|
} else {
|
||
|
|
LIBS += -L../../Bin -lslfio
|
||
|
|
}
|