1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- TARGET = OGLES2IntroducingPVRTools
- TEMPLATE = app
- APPROOT = ../..
- SDKROOT = $$APPROOT/../../..
- QT += opengl
- CONFIG += qt console
- # Add our source files
- SOURCES += \
- $$SDKROOT/TrainingCourse/IntroducingPVRTools/OGLES2/OGLES2IntroducingPVRTools.cpp \
- $$SDKROOT/Shell/PVRShell.cpp \
- $$SDKROOT/Shell/API/Qt/PVRShellAPI.cpp \
- $$SDKROOT/Shell/OS/Qt/PVRShellOS.cpp
- # Add our content files
- CONTENTROOT = $$APPROOT/Content
- SOURCES += \
- $$CONTENTROOT/Image.cpp \
- $$CONTENTROOT/FragShader.cpp \
- $$CONTENTROOT/VertShader.cpp
- # Add our header files
- HEADERS += \
- $$SDKROOT/Shell/PVRShell.h \
- $$SDKROOT/Shell/PVRShellImpl.h \
- $$SDKROOT/Shell/API/Qt/PVRShellAPI.h \
- $$SDKROOT/Shell/OS/Qt/PVRShellOS.h
- # Add our include paths
- INCLUDEPATH += \
- $$SDKROOT/Shell \
- $$SDKROOT/Shell/API/Qt \
- $$SDKROOT/Shell/OS/Qt \
- $$SDKROOT/Builds/OGLES2/Include \
- $$SDKROOT/Tools/OGLES2
- # depends
- LIBS += \
- -L$$SDKROOT/Tools/OGLES2/Build/Qt \
- -lOGLES2Tools
- # Install
- target.path = /usr/bin
- INSTALLS += target
- DEFINES += BUILD_OGLES2 __QT__
|