-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqmobilempd.pro
executable file
·92 lines (79 loc) · 2.1 KB
/
qmobilempd.pro
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#-------------------------------------------------
#
# Project created by QtCreator 2011-03-08T12:33:19
#
#-------------------------------------------------
QT += core gui network
TARGET = qmobilempd
TEMPLATE = app
SOURCES += main.cpp mainwindow.cpp \
networkaccess.cpp \
mpdalbum.cpp \
mpdartist.cpp \
mpdtrack.cpp \
ui_songinfo.cpp \
wlitrack.cpp \
ui_contextview.cpp \
settingsdialog.cpp \
mpdfileentry.cpp \
wlifile.cpp \
QsKineticScroller.cpp \
commondebug.cpp \
currentsongwidget.cpp \
abstractmenuwidget.cpp \
verticalmenuwidget.cpp \
horizontalmenuwidget.cpp
HEADERS += mainwindow.h \
networkaccess.h \
mpdalbum.h \
mpdartist.h \
mpdtrack.h \
ui_songinfo.h \
wlitrack.h \
ui_contextview.h \
settingsdialog.h \
common.h \
mpdfileentry.h \
wlifile.h \
QsKineticScroller.h \
commondebug.h \
currentsongwidget.h \
abstractmenuwidget.h \
verticalmenuwidget.h \
horizontalmenuwidget.h
FORMS += mainwindow.ui \
ui_songinfo.ui \
ui_contextview.ui \
settingsdialog.ui \
currentsongwidget.ui \
verticalmenuwidget.ui \
horizontalmenuwidget.ui
# Please do not modify the following two lines. Required for deployment.
RESOURCES += \
Icons.qrc
OTHER_FILES += \
README.txt \
Changelog.txt \
debian/changelog \
qtc_packaging/debian_harmattan/rules \
qtc_packaging/debian_harmattan/README \
qtc_packaging/debian_harmattan/copyright \
qtc_packaging/debian_harmattan/control \
qtc_packaging/debian_harmattan/compat \
qtc_packaging/debian_harmattan/changelog
#CONFIG += mobility
#MOBILITY = feedback
symbian {
TARGET.UID3 = 0xe45c4912
TARGET.CAPABILITY += NetworkServices
TARGET.EPOCSTACKSIZE = 0x14000
TARGET.EPOCHEAPSIZE = 0x020000 0x8000000
ICON = qmobilempd.svg
}
VERSION = 1.0.7
TRANSLATIONS = qmobilempd_en.ts \
qmobilempd_de.ts
unix:!symbian:!maemo5 {
target.path = /opt/qmobilempd/bin
INSTALLS += target
}