summaryrefslogtreecommitdiffstats
path: root/hyperui/hyperui.pro
blob: 1dbd4eae238ee507434c660f9228e031959d9fcb (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
TEMPLATE = app
TARGET = hyperui
DEPENDPATH += .

target.path = $$PREFIX/bin
INSTALLS += target

include(../shared/shared.pri)

symbian {
    TARGET.UID3 = 0xe1234569
    ICON = hyperui.svg
    isEmpty(RESOLUTION) {
        RESOLUTION = "640x360"
    }
}

HEADERS += mainwindow.h \
           pagemenu.h \
           view.h \
           pageview.h \
           menuview.h \
           phoneview.h \
           draggablepreview.h \
           clockwidget.h \
           ../shared/button.h \
           ../shared/label.h \
           ../shared/dataresource.h

SOURCES += main.cpp \
           mainwindow.cpp \
           pagemenu.cpp \
           view.cpp \
           pageview.cpp \
           menuview.cpp \
           phoneview.cpp \
           draggablepreview.cpp \
           clockwidget.cpp \
           ../shared/button.cpp \
           ../shared/label.cpp \
           ../shared/dataresource.cpp

isEmpty(RESOLUTION) {
    RESOLUTION = "800x480"
}

!isEmpty(USE_RASTER) {
    DEFINES += USE_RASTER_GRAPHICS_SYSTEM
}

RESOURCES = resource/$$RESOLUTION/hyperui.qrc