2009-04-13 17:31:02 +00:00
|
|
|
TARGET = qtr
|
|
|
|
NAME = "Transmission"
|
|
|
|
DESCRIPTION = "Transmission: a fast, easy, and free BitTorrent client"
|
2009-04-09 18:55:47 +00:00
|
|
|
VERSION = 1.6.0
|
2009-04-13 17:31:02 +00:00
|
|
|
LICENSE = "GPL"
|
|
|
|
|
|
|
|
target.path = /bin
|
|
|
|
INSTALLS += target
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
CONFIG += qt thread debug link_pkgconfig
|
|
|
|
QT += network
|
|
|
|
PKGCONFIG = fontconfig libcurl openssl
|
|
|
|
|
|
|
|
TRANSMISSION_TOP = ..
|
|
|
|
INCLUDEPATH += $${TRANSMISSION_TOP}
|
|
|
|
LIBS += $${TRANSMISSION_TOP}/libtransmission/libtransmission.a
|
|
|
|
LIBS += $${TRANSMISSION_TOP}/third-party/miniupnp/libminiupnp.a
|
|
|
|
LIBS += $${TRANSMISSION_TOP}/third-party/libnatpmp/libnatpmp.a
|
|
|
|
LIBS += $${TRANSMISSION_TOP}/third-party/libevent/.libs/libevent.a
|
|
|
|
|
2009-04-13 17:31:02 +00:00
|
|
|
TRANSLATIONS += transmission_en.ts
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2009-04-13 17:31:02 +00:00
|
|
|
FORMS += mainwin.ui about.ui
|
2009-04-09 18:55:47 +00:00
|
|
|
RESOURCES += application.qrc
|
|
|
|
SOURCES += about.cc \
|
|
|
|
app.cc \
|
|
|
|
details.cc \
|
|
|
|
file-tree.cc \
|
2009-04-11 18:25:12 +00:00
|
|
|
filters.cc \
|
2009-04-09 18:55:47 +00:00
|
|
|
hig.cc \
|
|
|
|
mainwin.cc \
|
|
|
|
make-dialog.cc \
|
|
|
|
options.cc \
|
|
|
|
prefs.cc \
|
|
|
|
prefs-dialog.cc \
|
|
|
|
qticonloader.cc \
|
|
|
|
session.cc \
|
|
|
|
squeezelabel.cc \
|
|
|
|
stats-dialog.cc \
|
|
|
|
torrent.cc \
|
|
|
|
torrent-delegate.cc \
|
|
|
|
torrent-delegate-min.cc \
|
|
|
|
torrent-filter.cc \
|
|
|
|
torrent-model.cc \
|
|
|
|
utils.cc \
|
|
|
|
watchdir.cc
|
2009-04-13 17:31:02 +00:00
|
|
|
HEADERS += $$replace(SOURCES, .cc, .h)
|
|
|
|
HEADERS += speed.h types.h
|
2009-04-09 18:55:47 +00:00
|
|
|
|