-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathhutspot.pro
155 lines (143 loc) · 4.84 KB
/
hutspot.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# NOTICE:
#
# Application name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, the following needs to be done
# to match new name:
# - corresponding QML filename must be changed
# - desktop icon filename must be changed
# - desktop filename must be changed
# - icon definition filename in desktop file must be changed
# - translation filenames have to be changed
# The name of your application
TARGET = hutspot
CONFIG += sailfishapp
SOURCES += \
src/o2/o0baseauth.cpp \
src/o2/o0settingsstore.cpp \
src/o2/o2.cpp \
src/o2/o2reply.cpp \
src/o2/o2replyserver.cpp \
src/o2/o2spotify.cpp \
src/o2/o2simplecrypt.cpp \
src/spotify.cpp \
src/hutspot.cpp \
src/qdeclarativeprocess.cpp \
src/qmdnsengine/abstractserver.cpp \
src/qmdnsengine/bitmap.cpp \
src/qmdnsengine/browser.cpp \
src/qmdnsengine/cache.cpp \
src/qmdnsengine/dns.cpp \
src/qmdnsengine/hostname.cpp \
src/qmdnsengine/mdns.cpp \
src/qmdnsengine/message.cpp \
src/qmdnsengine/prober.cpp \
src/qmdnsengine/provider.cpp \
src/qmdnsengine/query.cpp \
src/qmdnsengine/record.cpp \
src/qmdnsengine/resolver.cpp \
src/qmdnsengine/server.cpp \
src/qmdnsengine/service.cpp \
src/spmdns.cpp \
src/connect/spconnect.cpp \
src/connect/connectmdnsservice.cpp \
src/systemutil.cpp
DISTFILES += \
qml/cover/CoverPage.qml \
translations/*.ts \
qml/pages/Search.qml \
qml/components/SearchResultListItem.qml \
qml/pages/MyStuff.qml \
qml/pages/Album.qml \
qml/pages/Playlist.qml \
qml/pages/Artist.qml \
icons/256x256/hutspot.png \
rpm/hutspot.yaml \
rpm/hutspot.spec \
rpm/hutspot.changes.in \
hutspot.desktop \
qml/hutspot.qml \
qml/components/ArtistPicker.qml \
qml/pages/TopStuff.qml \
qml/pages/Devices.qml \
qml/components/Librespot.qml \
qml/components/MetaInfoPanel.qml \
qml/components/SearchResultContextMenu.qml \
qml/components/AlbumTrackContextMenu.qml \
qml/pages/GenreMood.qml \
qml/pages/GenreMoodPlaylist.qml \
qml/components/GestureArea.qml \
qml/components/CursorHelper.qml \
qml/pages/History.qml \
qml/pages/Recommended.qml \
qml/components/SearchFieldWithMenu.qml \
qml/components/MySearchField.qml \
qml/components/SectionDelegate.qml \
qml/components/SortedListModel.qml \
qml/components/QueueController.qml \
qml/components/SpotifyController.qml \
qml/components/PlaybackState.qml \
qml/components/ControlPanel.qml \
qml/components/GlassyBackground.qml \
qml/components/NetworkConnection.qml \
qml/components/SpotifyDataCache.qml
SAILFISHAPP_ICONS = 86x86 108x108 128x128 256x256
# to disable building translations every time, comment out the
# following CONFIG line
CONFIG += sailfishapp_i18n
TRANSLATIONS += translations/hutspot.ts \
translations/hutspot-de.ts \
translations/hutspot-fi.ts \
translations/hutspot-it.ts \
translations/hutspot-sv.ts \
translations/hutspot-zh.ts
HEADERS += \
src/o2/o0abstractstore.h \
src/o2/o0baseauth.h \
src/o2/o0export.h \
src/o2/o0globals.h \
src/o2/o0requestparameter.h \
src/o2/o0settingsstore.h \
src/o2/o0simplecrypt.h \
src/o2/o2.h \
src/o2/o2reply.h \
src/o2/o2replyserver.h \
src/o2/o2spotify.h \
src/spotify.h \
src/IconProvider.h \
src/qdeclarativeprocess.h \
src/qmdnsengine/bitmap_p.h \
src/qmdnsengine/browser_p.h \
src/qmdnsengine/cache_p.h \
src/qmdnsengine/hostname_p.h \
src/qmdnsengine/message_p.h \
src/qmdnsengine/prober_p.h \
src/qmdnsengine/provider_p.h \
src/qmdnsengine/query_p.h \
src/qmdnsengine/record_p.h \
src/qmdnsengine/resolver_p.h \
src/qmdnsengine/server_p.h \
src/qmdnsengine/service_p.h \
src/qmdnsengine/qmdnsengine/abstractserver.h \
src/qmdnsengine/qmdnsengine/bitmap.h \
src/qmdnsengine/qmdnsengine/browser.h \
src/qmdnsengine/qmdnsengine/cache.h \
src/qmdnsengine/qmdnsengine/dns.h \
src/qmdnsengine/qmdnsengine/hostname.h \
src/qmdnsengine/qmdnsengine/mdns.h \
src/qmdnsengine/qmdnsengine/message.h \
src/qmdnsengine/qmdnsengine/prober.h \
src/qmdnsengine/qmdnsengine/provider.h \
src/qmdnsengine/qmdnsengine/query.h \
src/qmdnsengine/qmdnsengine/record.h \
src/qmdnsengine/qmdnsengine/resolver.h \
src/qmdnsengine/qmdnsengine/server.h \
src/qmdnsengine/qmdnsengine/service.h \
src/qmdnsengine/qmdnsengine_export.h \
src/spmdns.h \
src/connect/spconnect.h \
src/connect/connectmdnsservice.h \
src/systemutil.h
INCLUDEPATH += src/qmdnsengine
#QMAKE_LFLAGS += -lssl -lcrypto
PKGCONFIG += openssl
CONFIG += console