blob: 3998cf55a581027eb2679e5a73d666cfbbd7499d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
QT += opengl
HEADERS = glwidget.h \
helper.h \
widget.h \
window.h
SOURCES = glwidget.cpp \
helper.cpp \
main.cpp \
widget.cpp \
window.cpp
# install
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/opengl/2dpainting
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS 2dpainting.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/opengl/2dpainting
INSTALLS += target sources
symbian: CONFIG += qt_example
|