OGLES2Bumpmap.pro 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. TARGET = OGLES2Bumpmap
  2. TEMPLATE = app
  3. APPROOT = ../..
  4. SDKROOT = $$APPROOT/../../..
  5. QT += opengl
  6. CONFIG += qt console
  7. # Add our source files
  8. SOURCES += \
  9. $$SDKROOT/TrainingCourse/Bumpmap/OGLES2/OGLES2Bumpmap.cpp \
  10. $$SDKROOT/Shell/PVRShell.cpp \
  11. $$SDKROOT/Shell/API/Qt/PVRShellAPI.cpp \
  12. $$SDKROOT/Shell/OS/Qt/PVRShellOS.cpp
  13. # Add our content files
  14. CONTENTROOT = $$APPROOT/Content
  15. SOURCES += \
  16. $$CONTENTROOT/Normalmap.cpp \
  17. $$CONTENTROOT/Basetex.cpp \
  18. $$CONTENTROOT/FragShader.cpp \
  19. $$CONTENTROOT/VertShader.cpp \
  20. $$CONTENTROOT/Mask.cpp
  21. # Add our header files
  22. HEADERS += \
  23. $$SDKROOT/Shell/PVRShell.h \
  24. $$SDKROOT/Shell/PVRShellImpl.h \
  25. $$SDKROOT/Shell/API/Qt/PVRShellAPI.h \
  26. $$SDKROOT/Shell/OS/Qt/PVRShellOS.h
  27. # Add our include paths
  28. INCLUDEPATH += \
  29. $$SDKROOT/Shell \
  30. $$SDKROOT/Shell/API/Qt \
  31. $$SDKROOT/Shell/OS/Qt \
  32. $$SDKROOT/Builds/OGLES2/Include \
  33. $$SDKROOT/Tools/OGLES2
  34. # depends
  35. LIBS += \
  36. -L$$SDKROOT/Tools/OGLES2/Build/Qt \
  37. -lOGLES2Tools
  38. # Install
  39. target.path = /usr/bin
  40. INSTALLS += target
  41. DEFINES += BUILD_OGLES2 __QT__