1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2010-09-29T17:04:06
- #
- #-------------------------------------------------
- TARGET = OGLES2Tools
- TEMPLATE = lib
- DEFINES += BUILD_OGLES2 __QT__
- # Add our source files
- SOURCES += \
- ../../PVRTTextureAPI.cpp \
- ../../PVRTShader.cpp \
- ../../PVRTPrint3DAPI.cpp \
- ../../PVRTPFXParserAPI.cpp \
- ../../PVRTgles2Ext.cpp \
- ../../PVRTBackground.cpp \
- ../../../PVRTVertex.cpp \
- ../../../PVRTVector.cpp \
- ../../../PVRTTriStrip.cpp \
- ../../../PVRTTrans.cpp \
- ../../../PVRTTexture.cpp \
- ../../../PVRTString.cpp \
- ../../../PVRTShadowVol.cpp \
- ../../../PVRTResourceFile.cpp \
- ../../../PVRTQuaternionX.cpp \
- ../../../PVRTQuaternionF.cpp \
- ../../../PVRTPrint3D.cpp \
- ../../../PVRTPFXParser.cpp \
- ../../../PVRTModelPOD.cpp \
- ../../../PVRTMisc.cpp \
- ../../../PVRTMatrixX.cpp \
- ../../../PVRTMatrixF.cpp \
- ../../../PVRTError.cpp \
- ../../../PVRTDecompress.cpp
- # Add our header files
- HEADERS += \
- ../../PVRTTextureAPI.h \
- ../../PVRTShader.h \
- ../../PVRTPrint3DShaders.h \
- ../../PVRTPrint3DPVRLogo.h \
- ../../PVRTPrint3DIMGLogo.h \
- ../../PVRTPFXParserAPI.h \
- ../../PVRTgles2Ext.h \
- ../../PVRTContext.h \
- ../../PVRTBackgroundShaders.h \
- ../../OGLES2Tools.h
- # Add our include paths
- INCLUDEPATH += \
- ../.. \
- ../../.. \
- ../../../../Builds/OGLES2/Include
- DEPENDPATH += \
- ../.. \
- ../../..
- CONFIG = staticlib
- unix:!symbian {
- maemo5 {
- target.path = /opt/usr/lib
- } else {
- target.path = /usr/local/lib
- }
- INSTALLS += target
- }
|