0
|
1 |
HEADERS += addtorrentdialog.h \
|
|
2 |
bencodeparser.h \
|
|
3 |
connectionmanager.h \
|
|
4 |
mainwindow.h \
|
|
5 |
metainfo.h \
|
|
6 |
peerwireclient.h \
|
|
7 |
ratecontroller.h \
|
|
8 |
filemanager.h \
|
|
9 |
torrentclient.h \
|
|
10 |
torrentserver.h \
|
|
11 |
trackerclient.h
|
|
12 |
|
|
13 |
SOURCES += main.cpp \
|
|
14 |
addtorrentdialog.cpp \
|
|
15 |
bencodeparser.cpp \
|
|
16 |
connectionmanager.cpp \
|
|
17 |
mainwindow.cpp \
|
|
18 |
metainfo.cpp \
|
|
19 |
peerwireclient.cpp \
|
|
20 |
ratecontroller.cpp \
|
|
21 |
filemanager.cpp \
|
|
22 |
torrentclient.cpp \
|
|
23 |
torrentserver.cpp \
|
|
24 |
trackerclient.cpp
|
|
25 |
|
|
26 |
# Forms and resources
|
|
27 |
FORMS += forms/addtorrentform.ui
|
|
28 |
RESOURCES += icons.qrc
|
|
29 |
|
|
30 |
QT += network
|
|
31 |
|
|
32 |
# install
|
|
33 |
target.path = $$[QT_INSTALL_EXAMPLES]/network/torrent
|
|
34 |
sources.files = $$SOURCES $$HEADERS $$RESOURCES torrent.pro *.torrent
|
|
35 |
sources.files += icons forms 3rdparty
|
|
36 |
sources.path = $$[QT_INSTALL_EXAMPLES]/network/torrent
|
|
37 |
INSTALLS += target sources
|
|
38 |
|
|
39 |
symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
|