OGLES2AnisotropicLighting.pro 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. TARGET = OGLES2AnisotropicLighting
  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/AnisotropicLighting/OGLES2/OGLES2AnisotropicLighting.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/Basetex.cpp \
  17. $$CONTENTROOT/FastFragShader.cpp \
  18. $$CONTENTROOT/FastVertShader.cpp \
  19. $$CONTENTROOT/SlowFragShader.cpp \
  20. $$CONTENTROOT/SlowVertShader.cpp \
  21. $$CONTENTROOT/Mask.cpp
  22. # Add our header files
  23. HEADERS += \
  24. $$SDKROOT/Shell/PVRShell.h \
  25. $$SDKROOT/Shell/PVRShellImpl.h \
  26. $$SDKROOT/Shell/API/Qt/PVRShellAPI.h \
  27. $$SDKROOT/Shell/OS/Qt/PVRShellOS.h
  28. # Add our include paths
  29. INCLUDEPATH += \
  30. $$SDKROOT/Shell \
  31. $$SDKROOT/Shell/API/Qt \
  32. $$SDKROOT/Shell/OS/Qt \
  33. $$SDKROOT/Builds/OGLES2/Include \
  34. $$SDKROOT/Tools/OGLES2
  35. # depends
  36. LIBS += \
  37. -L$$SDKROOT/Tools/OGLES2/Build/Qt \
  38. -lOGLES2Tools
  39. # Install
  40. target.path = /usr/bin
  41. INSTALLS += target
  42. DEFINES += BUILD_OGLES2 __QT__