annotate examples/opengl/hellogl/hellogl.pro @ 282:256ab6cb8e85

Signals look-up andNew syntax for connect. The old one will not work from now on. This will allow for the signals overload. Although changes are done for both D1 and D2 versions, D1 won't work because of compiler bugs. I am tired of waiting for fixes.
author eldar
date Fri, 16 Oct 2009 02:43:59 +0000
parents e78566595089
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
e78566595089 initial import
mandel
parents:
diff changeset
1 HEADERS = glwidget.h \
e78566595089 initial import
mandel
parents:
diff changeset
2 window.h
e78566595089 initial import
mandel
parents:
diff changeset
3 SOURCES = glwidget.cpp \
e78566595089 initial import
mandel
parents:
diff changeset
4 main.cpp \
e78566595089 initial import
mandel
parents:
diff changeset
5 window.cpp
e78566595089 initial import
mandel
parents:
diff changeset
6 QT += opengl
e78566595089 initial import
mandel
parents:
diff changeset
7
e78566595089 initial import
mandel
parents:
diff changeset
8 # install
e78566595089 initial import
mandel
parents:
diff changeset
9 target.path = $$[QT_INSTALL_EXAMPLES]/opengl/hellogl
e78566595089 initial import
mandel
parents:
diff changeset
10 sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS hellogl.pro
e78566595089 initial import
mandel
parents:
diff changeset
11 sources.path = $$[QT_INSTALL_EXAMPLES]/opengl/hellogl
e78566595089 initial import
mandel
parents:
diff changeset
12 INSTALLS += target sources