blob: 110788726301274f163912d5105279cd31d19536 (
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 = shadereffects
DEPENDPATH += .
INCLUDEPATH += .
QT += declarative opengl
# Input
SOURCES += main.cpp
symbian {
DEFINES += SHADEREFFECTS_USE_OPENGL_GRAPHICSSYSTEM
}
target.path = $$[QT_INSTALL_EXAMPLES]/declarative/shadereffects
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS shadereffects.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/declarative/shadereffects
qmlfiles.files = qml
qmlfiles.path = $$[QT_INSTALL_EXAMPLES]/declarative/shadereffects
INSTALLS += target sources qmlfiles
|