OGLES2Tools.pro 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2010-09-29T17:04:06
  4. #
  5. #-------------------------------------------------
  6. TARGET = OGLES2Tools
  7. TEMPLATE = lib
  8. DEFINES += BUILD_OGLES2 __QT__
  9. # Add our source files
  10. SOURCES += \
  11. ../../PVRTTextureAPI.cpp \
  12. ../../PVRTShader.cpp \
  13. ../../PVRTPrint3DAPI.cpp \
  14. ../../PVRTPFXParserAPI.cpp \
  15. ../../PVRTgles2Ext.cpp \
  16. ../../PVRTBackground.cpp \
  17. ../../../PVRTVertex.cpp \
  18. ../../../PVRTVector.cpp \
  19. ../../../PVRTTriStrip.cpp \
  20. ../../../PVRTTrans.cpp \
  21. ../../../PVRTTexture.cpp \
  22. ../../../PVRTString.cpp \
  23. ../../../PVRTShadowVol.cpp \
  24. ../../../PVRTResourceFile.cpp \
  25. ../../../PVRTQuaternionX.cpp \
  26. ../../../PVRTQuaternionF.cpp \
  27. ../../../PVRTPrint3D.cpp \
  28. ../../../PVRTPFXParser.cpp \
  29. ../../../PVRTModelPOD.cpp \
  30. ../../../PVRTMisc.cpp \
  31. ../../../PVRTMatrixX.cpp \
  32. ../../../PVRTMatrixF.cpp \
  33. ../../../PVRTError.cpp \
  34. ../../../PVRTDecompress.cpp
  35. # Add our header files
  36. HEADERS += \
  37. ../../PVRTTextureAPI.h \
  38. ../../PVRTShader.h \
  39. ../../PVRTPrint3DShaders.h \
  40. ../../PVRTPrint3DPVRLogo.h \
  41. ../../PVRTPrint3DIMGLogo.h \
  42. ../../PVRTPFXParserAPI.h \
  43. ../../PVRTgles2Ext.h \
  44. ../../PVRTContext.h \
  45. ../../PVRTBackgroundShaders.h \
  46. ../../OGLES2Tools.h
  47. # Add our include paths
  48. INCLUDEPATH += \
  49. ../.. \
  50. ../../.. \
  51. ../../../../Builds/OGLES2/Include
  52. DEPENDPATH += \
  53. ../.. \
  54. ../../..
  55. CONFIG = staticlib
  56. unix:!symbian {
  57. maemo5 {
  58. target.path = /opt/usr/lib
  59. } else {
  60. target.path = /usr/local/lib
  61. }
  62. INSTALLS += target
  63. }