-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharbour-transmissionremote.pro
91 lines (81 loc) · 2.7 KB
/
harbour-transmissionremote.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
# 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 = harbour-transmissionremote
CONFIG += sailfishapp
CONFIG += C++11
QT += network xml
SOURCES += \
src/rpcconnection.cpp \
src/torrent.cpp \
src/transmission.cpp \
src/settings.cpp \
src/torrentfile.cpp \
src/harbour-transmissionremote.cpp \
src/torrentclient.cpp \
src/transmissionCommands/sessionstats.cpp \
src/transmissionCommands/torrentget.cpp \
src/transmissionCommands/uploadtorrent.cpp \
src/jsonrpcconnection.cpp \
src/clienttypes.cpp \
src/xmlrpcconnection.cpp \
src/rtorrent.cpp \
src/rtorrentCommands/multicall.cpp \
src/rtorrentCommands/updatecommand.cpp \
src/rtorrenttorrent.cpp \
src/rtorrentCommands/addtorrent.cpp \
src/transmissionCommands/movetorrent.cpp \
src/transmissiontorrent.cpp
OTHER_FILES += \
qml/cover/CoverPage.qml \
qml/pages/FirstPage.qml \
translations/*.ts \
qml/pages/TorrentDelegate.qml \
qml/pages/TorrentPage.qml \
qml/pages/TorrentFileDelegate.qml \
qml/prettyFileSize.js \
harbour-transmissionremote.desktop \
rpm/harbour-transmissionremote.spec \
rpm/harbour-transmissionremote.yaml \
qml/harbour-transmissionremote.qml \
qml/dialogs/AddTorrentDialog.qml \
qml/dialogs/ClientSettingsDialog.qml \
qml/dialogs/SettingsDialog.qml \
doc/rtorrentCapture.txt \
qml/pages/SelectClientPage.qml \
doc/rtorrentAddDump.txt \
qml/dialogs/MoveTorrentDialog.qml \
rpm/harbour-transmissionremote.changes
# to disable building translations every time, comment out the
# following CONFIG line
#CONFIG += sailfishapp_i18n
#TRANSLATIONS += translations/harbour-transmissionremote-de.ts
HEADERS += \
src/rpcconnection.h \
src/torrent.h \
src/transmission.h \
src/settings.h \
src/torrentfile.h \
src/torrentclient.h \
src/transmissionCommands/sessionstats.h \
src/transmissionCommands/torrentget.h \
src/transmissionCommands/uploadtorrent.h \
src/jsonrpcconnection.h \
src/clienttypes.h \
src/xmlrpcconnection.h \
src/rtorrent.h \
src/rtorrentCommands/multicall.h \
src/rtorrentCommands/updatecommand.h \
src/rtorrenttorrent.h \
src/rtorrentCommands/addtorrent.h \
src/transmissionCommands/movetorrent.h \
src/transmissiontorrent.h
RESOURCES +=