2013-10-29 20:28:59 +00:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2013-10-29T14:38:43
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
QT -= gui
|
|
|
|
|
|
|
|
TARGET = paysages_definition
|
|
|
|
TEMPLATE = lib
|
|
|
|
|
|
|
|
DEFINES += DEFINITION_LIBRARY
|
|
|
|
|
2013-11-09 17:56:56 +00:00
|
|
|
include(../common.pri)
|
|
|
|
|
2013-10-30 11:46:18 +00:00
|
|
|
SOURCES += \
|
2013-10-31 16:59:18 +00:00
|
|
|
Layers.cpp \
|
2013-11-13 19:07:35 +00:00
|
|
|
WaterDefinition.cpp \
|
2013-11-14 17:47:03 +00:00
|
|
|
SurfaceMaterial.cpp \
|
2013-11-15 22:26:44 +00:00
|
|
|
CameraDefinition.cpp \
|
|
|
|
CloudsDefinition.cpp \
|
2013-11-15 23:27:40 +00:00
|
|
|
CloudLayerDefinition.cpp \
|
2013-11-16 18:12:42 +00:00
|
|
|
AtmosphereDefinition.cpp \
|
|
|
|
TexturesDefinition.cpp \
|
|
|
|
TextureLayerDefinition.cpp \
|
2013-11-17 21:36:18 +00:00
|
|
|
Zone.cpp \
|
|
|
|
TerrainDefinition.cpp \
|
|
|
|
TerrainHeightMap.cpp \
|
2014-09-15 10:32:27 +00:00
|
|
|
Scenery.cpp \
|
|
|
|
PaintedGrid.cpp \
|
|
|
|
PaintedGridBrush.cpp \
|
2015-08-12 20:21:10 +00:00
|
|
|
PaintedGridData.cpp \
|
2015-08-13 21:46:50 +00:00
|
|
|
DefinitionNode.cpp \
|
2015-08-16 21:01:56 +00:00
|
|
|
FloatNode.cpp \
|
|
|
|
DefinitionDiff.cpp \
|
2015-08-16 22:29:54 +00:00
|
|
|
FloatDiff.cpp \
|
|
|
|
DiffManager.cpp \
|
|
|
|
DefinitionWatcher.cpp
|
2013-10-29 20:28:59 +00:00
|
|
|
|
|
|
|
HEADERS +=\
|
2013-10-30 11:46:18 +00:00
|
|
|
definition_global.h \
|
2013-10-31 16:59:18 +00:00
|
|
|
Layers.h \
|
2013-11-13 19:07:35 +00:00
|
|
|
WaterDefinition.h \
|
2013-11-14 17:47:03 +00:00
|
|
|
SurfaceMaterial.h \
|
2013-11-15 22:26:44 +00:00
|
|
|
CameraDefinition.h \
|
|
|
|
CloudsDefinition.h \
|
2013-11-15 23:27:40 +00:00
|
|
|
CloudLayerDefinition.h \
|
2013-11-16 18:12:42 +00:00
|
|
|
AtmosphereDefinition.h \
|
|
|
|
TexturesDefinition.h \
|
|
|
|
TextureLayerDefinition.h \
|
2013-11-17 21:36:18 +00:00
|
|
|
Zone.h \
|
|
|
|
TerrainDefinition.h \
|
|
|
|
TerrainHeightMap.h \
|
2014-09-15 10:32:27 +00:00
|
|
|
Scenery.h \
|
|
|
|
PaintedGrid.h \
|
|
|
|
PaintedGridBrush.h \
|
2015-08-12 20:21:10 +00:00
|
|
|
PaintedGridData.h \
|
2015-08-13 21:46:50 +00:00
|
|
|
DefinitionNode.h \
|
2015-08-16 21:01:56 +00:00
|
|
|
FloatNode.h \
|
|
|
|
DefinitionDiff.h \
|
2015-08-16 22:29:54 +00:00
|
|
|
FloatDiff.h \
|
|
|
|
DiffManager.h \
|
|
|
|
DefinitionWatcher.h
|
2013-10-29 20:28:59 +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
|
2013-10-30 11:46:18 +00:00
|
|
|
|
|
|
|
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
|