transmission/qt/qtr.pro

50 lines
1.3 KiB
Prolog
Raw Normal View History

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
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
TRANSLATIONS += transmission_en.ts
2009-04-09 18:55:47 +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 \
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
HEADERS += $$replace(SOURCES, .cc, .h)
HEADERS += speed.h types.h
2009-04-09 18:55:47 +00:00