summaryrefslogtreecommitdiffstats
path: root/examples/sensors/cubehouse/cubehouse.pro
blob: 5fb289a19ef3cca66eb2fdedd40a6468dde3d9a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
TEMPLATE = app
TARGET = cubehouse
CONFIG += qt debug warn_on
requires(contains(QT_CONFIG,opengl))
QT += opengl sensors widgets
SOURCES = \
    view.cpp \
    main.cpp \
    camera.cpp \
    light.cpp \
    lightmodel.cpp \
    material.cpp \
    painter.cpp
HEADERS = \
    view.h \
    teapot.h \
    cube.h \
    camera.h light.h \
    lightmodel.h \
    material.h \
    painter.h
contains(QT_CONFIG,opengles2) {
    SOURCES += painter_shader.cpp
} else {
    SOURCES += painter_fixed.cpp
}
RESOURCES = cubehouse.qrc

symbian {
    TARGET.CAPABILITY = ReadUserData
}