summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2012-02-28 16:07:07 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-29 03:09:38 +0100
commit99b997c4d5c4066866f4b4af04b925fcf17f144c (patch)
tree36d5fb7ffe86cc4ee0f63323ea507c08cf6a3e0a
parentb804b81288772b64dbd633c1e320f6e71a00b473 (diff)
Cleaned up examples/opengl/cube/cube.pro, removed message()
It's arbitrary and confusing to put a message(OpenGL support is enabled) in this one OpenGL example and no others, especially since the message is output during configure. Change-Id: I7b55868d10c288f3459a7fda594fea1e6f45bf9a Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
-rw-r--r--examples/opengl/cube/cube.pro9
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/opengl/cube/cube.pro b/examples/opengl/cube/cube.pro
index ef6f526067..98a3082340 100644
--- a/examples/opengl/cube/cube.pro
+++ b/examples/opengl/cube/cube.pro
@@ -1,9 +1,3 @@
-#-------------------------------------------------
-#
-# Project created by QtCreator 2010-06-23T12:55:35
-#
-#-------------------------------------------------
-
QT += core gui widgets
TARGET = cube
@@ -12,7 +6,6 @@ TEMPLATE = app
SOURCES += main.cpp
contains(QT_CONFIG, opengl) {
- message(Building with OpenGL support.)
QT += opengl
SOURCES += mainwidget.cpp \
@@ -29,8 +22,6 @@ contains(QT_CONFIG, opengl) {
OTHER_FILES += \
vshader.glsl \
fshader.glsl
-} else {
- message(OpenGL support is not available.)
}