blob: 978bd66ed6d39d80e848f890b6076cd50abfc5e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
TEMPLATE = app
TARGET = openglax
CONFIG += qt warn_off qaxserver
QT += opengl
HEADERS = glbox.h \
globjwin.h
SOURCES = glbox.cpp \
globjwin.cpp \
main.cpp
RC_FILE = $$QT_SOURCE_TREE/src/activeqt/control/qaxserver.rc
# install
target.path = $$[QT_INSTALL_EXAMPLES]/activeqt/opengl
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS opengl.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/activeqt/opengl
INSTALLS += target sources
symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
|