paysages3d/src/basics/basics.pro

87 lines
1.8 KiB
Prolog
Raw Normal View History

#-------------------------------------------------
#
# Project created by QtCreator 2013-10-29T17:15:02
#
#-------------------------------------------------
QT -= gui
TARGET = paysages_basics
TEMPLATE = lib
DEFINES += BASICS_LIBRARY
2013-11-09 17:56:56 +00:00
include(../common.pri)
SOURCES += \
2013-11-03 14:46:39 +00:00
NoiseGenerator.cpp \
NoiseFunctionPerlin.cpp \
NoiseFunctionSimplex.cpp \
2013-11-09 17:46:34 +00:00
Interpolation.cpp \
2013-11-11 12:56:39 +00:00
Vector3.cpp \
Vector3.inline.cpp \
2013-11-13 19:07:35 +00:00
SpaceSegment.cpp \
Color.cpp \
Color.inline.cpp \
ColorHSL.cpp \
BoundingBox.cpp \
2013-11-15 22:26:44 +00:00
Matrix4.cpp \
2013-11-19 11:51:26 +00:00
Curve.cpp \
2013-11-20 16:09:55 +00:00
ColorProfile.cpp \
Geometry.cpp \
Texture2D.cpp \
Texture3D.cpp \
Texture4D.cpp \
NoiseState.cpp \
FractalNoise.cpp \
2015-10-15 18:21:32 +00:00
CappedCylinder.cpp \
InfiniteCylinder.cpp \
InfiniteRay.cpp \
Sphere.cpp \
InfinitePlane.cpp \
Disk.cpp \
SpaceGridIterator.cpp
HEADERS +=\
basics_global.h \
2013-11-03 14:46:39 +00:00
NoiseGenerator.h \
NoiseFunctionPerlin.h \
NoiseFunctionSimplex.h \
2013-11-09 17:46:34 +00:00
Interpolation.h \
Vector3.h \
2013-11-13 19:07:35 +00:00
SpaceSegment.h \
Color.h \
ColorHSL.h \
BoundingBox.h \
2013-11-15 22:26:44 +00:00
Matrix4.h \
2013-11-19 11:51:26 +00:00
Curve.h \
2013-11-20 16:09:55 +00:00
ColorProfile.h \
Geometry.h \
Texture2D.h \
Texture3D.h \
Texture4D.h \
NoiseState.h \
FractalNoise.h \
2015-10-15 18:21:32 +00:00
CappedCylinder.h \
InfiniteCylinder.h \
InfiniteRay.h \
Sphere.h \
InfinitePlane.h \
Disk.h \
SpaceGridIterator.h
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}
2013-11-03 14:46:39 +00:00
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