TEMPLATE = app CONFIG += console CONFIG -= app_bundle TARGET = paysages-tests include(../common.pri) SOURCES += main.cpp \ Layers_Test.cpp \ PackStream_Test.cpp \ NoiseGenerator_Test.cpp \ TerrainPainting_Test.cpp \ Zone_Test.cpp \ Euclid_Test.cpp \ Camera_Test.cpp \ Clouds_Test.cpp \ FluidMediumManager_Test.cpp \ VertexArray_Test.cpp \ FractalNoise_Test.cpp \ SpaceSegment_Test.cpp \ Canvas_Test.cpp \ CanvasPortion_Test.cpp \ CanvasPreview_Test.cpp \ AtmosphereDefinition_Test.cpp \ Scenery_Test.cpp \ DefinitionNode_Test.cpp \ FloatNode_Test.cpp \ DiffManager_Test.cpp \ ColorHSL_Test.cpp \ RenderProgress_Test.cpp \ IntNode_Test.cpp \ LightingManager_Test.cpp \ GodRaysSampler_Test.cpp \ Interpolation_Test.cpp \ Rasterizer_Test.cpp \ CappedCylinder_Test.cpp \ InfiniteCylinder_Test.cpp \ Sphere_Test.cpp \ InfinitePlane_Test.cpp \ Disk_Test.cpp \ Vector3_Test.cpp HEADERS += \ 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 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