qt5base-lts/examples/opengl/cube/cube.pro
Marius Storm-Olsen ed5a7e22be Fix usage of QT_SOURCE_TREE
Functionality has been moved into qt_example.prf

Change-Id: I81423eb4c5645f03b131932b2d37eceee9fea086
Reviewed-on: http://codereview.qt.nokia.com/371
Reviewed-by: Marius Storm-Olsen <marius.storm-olsen@nokia.com>
2011-06-07 22:18:35 +02:00

41 lines
841 B
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2010-06-23T12:55:35
#
#-------------------------------------------------
QT += core gui
TARGET = cube
TEMPLATE = app
SOURCES += main.cpp
contains(QT_CONFIG, opengl) {
message(Building with OpenGL support.)
QT += opengl
SOURCES += mainwidget.cpp \
geometryengine.cpp
HEADERS += \
mainwidget.h \
geometryengine.h
RESOURCES += \
shaders.qrc \
textures.qrc
OTHER_FILES += \
vshader.glsl \
fshader.glsl
} else {
message(OpenGL support is not available.)
}
symbian: CONFIG += qt_example
maemo5: CONFIG += qt_example
symbian: warning(This example might not fully work on Symbian platform)
simulator: warning(This example might not fully work on Simulator platform)