OGLES2Texturing.pro 748 B

123456789101112131415161718192021222324252627282930313233343536
  1. TARGET = OGLES2Texturing
  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/Texturing/OGLES2/OGLES2Texturing.cpp \
  10. $$SDKROOT/Shell/PVRShell.cpp \
  11. $$SDKROOT/Shell/API/Qt/PVRShellAPI.cpp \
  12. $$SDKROOT/Shell/OS/Qt/PVRShellOS.cpp
  13. # Add our header files
  14. HEADERS += \
  15. $$SDKROOT/Shell/PVRShell.h \
  16. $$SDKROOT/Shell/PVRShellImpl.h \
  17. $$SDKROOT/Shell/API/Qt/PVRShellAPI.h \
  18. $$SDKROOT/Shell/OS/Qt/PVRShellOS.h
  19. # Add our include paths
  20. INCLUDEPATH += \
  21. $$SDKROOT/Shell \
  22. $$SDKROOT/Shell/API/Qt \
  23. $$SDKROOT/Shell/OS/Qt
  24. # Install
  25. target.path = /usr/bin
  26. INSTALLS += target
  27. DEFINES += BUILD_OGLES2 __QT__