2013-11-09 17:46:34 +00:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2013-11-09T15:13:23
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
QT -= gui
|
|
|
|
|
2013-11-09 18:00:14 +00:00
|
|
|
TARGET = paysages_render_software
|
2013-11-09 17:46:34 +00:00
|
|
|
TEMPLATE = lib
|
|
|
|
|
|
|
|
DEFINES += SOFTWARE_LIBRARY
|
|
|
|
|
2013-11-09 17:56:56 +00:00
|
|
|
include(../../common.pri)
|
|
|
|
|
2013-11-09 17:46:34 +00:00
|
|
|
SOURCES += SoftwareRenderer.cpp \
|
2013-11-11 14:42:11 +00:00
|
|
|
FluidMediumInterface.cpp \
|
2013-11-12 20:34:35 +00:00
|
|
|
FluidMediumManager.cpp \
|
2013-12-01 18:24:53 +00:00
|
|
|
AtmosphereRenderer.cpp \
|
|
|
|
CloudsRenderer.cpp \
|
|
|
|
BaseCloudLayerRenderer.cpp \
|
|
|
|
SkyRasterizer.cpp \
|
2013-12-04 21:52:18 +00:00
|
|
|
CloudBasicLayerRenderer.cpp \
|
|
|
|
clouds/BaseCloudsModel.cpp \
|
|
|
|
clouds/CloudModelStratoCumulus.cpp
|
2013-11-09 17:46:34 +00:00
|
|
|
|
|
|
|
HEADERS += SoftwareRenderer.h\
|
|
|
|
software_global.h \
|
2013-11-11 14:42:11 +00:00
|
|
|
FluidMediumInterface.h \
|
2013-11-12 20:34:35 +00:00
|
|
|
FluidMediumManager.h \
|
2013-12-01 18:24:53 +00:00
|
|
|
AtmosphereRenderer.h \
|
|
|
|
CloudsRenderer.h \
|
|
|
|
BaseCloudLayerRenderer.h \
|
|
|
|
SkyRasterizer.h \
|
2013-12-04 21:52:18 +00:00
|
|
|
CloudBasicLayerRenderer.h \
|
|
|
|
clouds/BaseCloudsModel.h \
|
|
|
|
clouds/CloudModelStratoCumulus.h
|
2013-11-09 17:46:34 +00:00
|
|
|
|
|
|
|
unix:!symbian {
|
|
|
|
maemo5 {
|
|
|
|
target.path = /opt/usr/lib
|
|
|
|
} else {
|
|
|
|
target.path = /usr/lib
|
|
|
|
}
|
|
|
|
INSTALLS += target
|
|
|
|
}
|
|
|
|
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../system/release/ -lpaysages_system
|
|
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../system/debug/ -lpaysages_system
|
|
|
|
else:unix: LIBS += -L$$OUT_PWD/../../system/ -lpaysages_system
|
|
|
|
INCLUDEPATH += $$PWD/../../system
|
|
|
|
DEPENDPATH += $$PWD/../../system
|
|
|
|
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../basics/release/ -lpaysages_basics
|
|
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../basics/debug/ -lpaysages_basics
|
|
|
|
else:unix: LIBS += -L$$OUT_PWD/../../basics/ -lpaysages_basics
|
|
|
|
INCLUDEPATH += $$PWD/../../basics
|
|
|
|
DEPENDPATH += $$PWD/../../basics
|
|
|
|
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../definition/release/ -lpaysages_definition
|
|
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../definition/debug/ -lpaysages_definition
|
|
|
|
else:unix: LIBS += -L$$OUT_PWD/../../definition/ -lpaysages_definition
|
|
|
|
INCLUDEPATH += $$PWD/../../definition
|
|
|
|
DEPENDPATH += $$PWD/../../definition
|
|
|
|
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../rendering/release/ -lpaysages_rendering
|
|
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../rendering/debug/ -lpaysages_rendering
|
|
|
|
else:unix: LIBS += -L$$OUT_PWD/../../rendering/ -lpaysages_rendering
|
|
|
|
INCLUDEPATH += $$PWD/../../rendering
|
|
|
|
DEPENDPATH += $$PWD/../../rendering
|