#------------------------------------------------- # # Project created by QtCreator 2015-06-16T15:37:51 # #------------------------------------------------- QT -= core gui Debug:TARGET = sparrowRendererd Release:TARGET = sparrowRenderer TEMPLATE = lib CONFIG += c++11 staticlib INCLUDEPATH += ../cpp_dependencies/include win32 { DESTDIR = $$PWD/../cpp_dependencies/lib/win32 LIBS += -L../../cpp_dependencies/lib/win32 LIBS += -lglew32 -lopengl32 -lglu32 } unix { DESTDIR = $$PWD/../cpp_dependencies/lib/linux LIBS += -L../../cpp_dependencies/lib/linux LIBS += -lGL -lGLEW -lGLU } SOURCES += shader.cpp \ gridmesh.cpp \ texture.cpp \ phongmaterial.cpp \ sphere.cpp \ lights.cpp \ sparrowrenderer.cpp \ resourcebase.cpp \ phongmodule.cpp \ skyboxmodule.cpp \ framebuffer.cpp \ meshbuilder.cpp \ asciimodule.cpp \ asciientity.cpp \ phongentity.cpp \ gbuffermodule.cpp HEADERS += shader.h \ camera.h \ glassert.h \ material.h \ gridmesh.h \ texture.h \ phongmaterial.h \ sphere.h \ lights.h \ sparrowrenderer.h \ resourcebase.h \ phongmodule.h \ skyboxmodule.h \ module.h \ resource.h \ framebuffer.h \ meshbuilder.h \ mesh.h \ image.h \ asciimodule.h \ asciientity.h \ phongentity.h \ entity.h \ gbuffermodule.h OTHER_FILES += *.frag *.vert *.glsl *.todo DISTFILES += \ modules.todo