CONFIG += console CONFIG -= app_bundle TEMPLATE = lib TARGET = paysages_rendering DEFINES += RENDERING_LIBRARY CONFIG(release, debug|release): DEFINES += NDEBUG INCLUDEPATH += $$PWD/.. SOURCES += main.c \ tools.c \ renderer.c \ render.c \ opencl.c \ noisesimplex.c \ noiseperlin.c \ noisenaive.c \ noise.c \ geoarea.c \ camera.c \ atmosphere/atm_render.c \ atmosphere/atm_raster.c \ atmosphere/atm_preview.c \ atmosphere/atm_presets.c \ atmosphere/atm_definition.c \ atmosphere/atm_bruneton.c \ clouds/clo_walking.c \ clouds/clo_rendering.c \ clouds/clo_preview.c \ clouds/clo_presets.c \ clouds/clo_density.c \ clouds/clo_definition.c \ shared/preview.c \ terrain/ter_render.c \ terrain/ter_raster.c \ terrain/ter_preview.c \ terrain/ter_presets.c \ terrain/ter_painting.c \ terrain/ter_definition.c \ textures/tex_tools.c \ textures/tex_rendering.c \ textures/tex_preview.c \ textures/tex_presets.c \ textures/tex_definition.c \ tools/zone.c \ tools/texture.c \ tools/parallel.c \ tools/memory.c \ tools/lighting.c \ tools/euclid.c \ tools/data.c \ tools/curve.c \ tools/color.c \ tools/cache.c \ tools/boundingbox.c \ tools/array.c \ water/wat_render.c \ water/wat_raster.c \ water/wat_preview.c \ water/wat_presets.c \ water/wat_definition.c \ Scenery.cpp HEADERS += \ tools.h \ renderer.h \ render.h \ opencl.h \ noisesimplex.h \ noiseperlin.h \ noisenaive.h \ noise.h \ main.h \ geoarea.h \ camera.h \ atmosphere/public.h \ atmosphere/private.h \ clouds/public.h \ clouds/private.h \ clouds/clo_walking.h \ clouds/clo_preview.h \ clouds/clo_density.h \ shared/types.h \ shared/preview.h \ terrain/ter_raster.h \ terrain/public.h \ terrain/private.h \ textures/tex_preview.h \ textures/public.h \ textures/private.h \ tools/zone.h \ tools/texture.h \ tools/parallel.h \ tools/memory.h \ tools/lighting.h \ tools/euclid.h \ tools/data.h \ tools/curve.h \ tools/color.h \ tools/cache.h \ tools/boundingbox.h \ tools/array.h \ water/public.h \ water/private.h \ rendering_global.h \ Scenery.h 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