paysages3d/src/tests/tests.pro

82 lines
3 KiB
Prolog
Raw Normal View History

2013-10-31 21:53:22 +00:00
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
2013-11-10 16:03:07 +00:00
TARGET = paysages-tests
2013-10-31 21:53:22 +00:00
include(../common.pri)
2013-10-31 21:53:22 +00:00
SOURCES += main.cpp \
Layers_Test.cpp \
2013-11-10 16:03:07 +00:00
PackStream_Test.cpp \
2013-11-10 20:14:10 +00:00
NoiseGenerator_Test.cpp \
2013-11-10 16:03:07 +00:00
TerrainPainting_Test.cpp \
2013-11-10 20:14:10 +00:00
Zone_Test.cpp \
Euclid_Test.cpp \
Camera_Test.cpp \
Clouds_Test.cpp \
FluidMediumManager_Test.cpp \
VertexArray_Test.cpp \
FractalNoise_Test.cpp \
SpaceSegment_Test.cpp \
2014-06-10 13:13:16 +00:00
Canvas_Test.cpp \
CanvasPortion_Test.cpp \
2014-08-28 13:09:47 +00:00
CanvasPreview_Test.cpp \
2015-08-03 22:00:56 +00:00
AtmosphereDefinition_Test.cpp \
Scenery_Test.cpp \
2015-08-13 22:22:20 +00:00
DefinitionNode_Test.cpp \
FloatNode_Test.cpp \
DiffManager_Test.cpp \
ColorHSL_Test.cpp \
RenderProgress_Test.cpp \
2015-09-24 22:12:31 +00:00
IntNode_Test.cpp \
LightingManager_Test.cpp \
GodRaysSampler_Test.cpp \
Interpolation_Test.cpp \
Rasterizer_Test.cpp \
2015-10-15 18:21:32 +00:00
CappedCylinder_Test.cpp \
InfiniteCylinder_Test.cpp \
Sphere_Test.cpp \
InfinitePlane_Test.cpp \
Disk_Test.cpp \
Vector3_Test.cpp
2013-10-31 21:53:22 +00:00
HEADERS += \
2013-11-10 20:14:10 +00:00
BaseTestCase.h
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/googletest/release/ -lgoogletest
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/googletest/debug/ -lgoogletest
else:unix: LIBS += -L$$OUT_PWD/googletest/ -lgoogletest
INCLUDEPATH += $$PWD/googletest/sources/include
DEPENDPATH += $$PWD/googletest/sources/include
2013-10-31 21:53:22 +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
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/../render/software/release/ -lpaysages_render_software
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../render/software/debug/ -lpaysages_render_software
else:unix: LIBS += -L$$OUT_PWD/../render/software/ -lpaysages_render_software
INCLUDEPATH += $$PWD/../render/software
DEPENDPATH += $$PWD/../render/software
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../render/opengl/release/ -lpaysages_render_opengl
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../render/opengl/debug/ -lpaysages_render_opengl
else:unix: LIBS += -L$$OUT_PWD/../render/opengl/ -lpaysages_render_opengl
INCLUDEPATH += $$PWD/../render/opengl
DEPENDPATH += $$PWD/../render/opengl