paysages3d/src/basics/basics.pro

49 lines
1.1 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 \
NoiseFunctionNaive.cpp \
NoiseFunctionPerlin.cpp \
NoiseFunctionSimplex.cpp \
2013-11-09 17:46:34 +00:00
Interpolation.cpp \
SpaceCoordinates.cpp \
Vector3.cpp
HEADERS +=\
basics_global.h \
2013-11-03 14:46:39 +00:00
NoiseGenerator.h \
NoiseFunctionNaive.h \
NoiseFunctionPerlin.h \
NoiseFunctionSimplex.h \
2013-11-09 17:46:34 +00:00
Interpolation.h \
SpaceCoordinates.h \
Vector3.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