transmission/qt/qtr.pro

34 lines
1.1 KiB
Prolog
Raw Normal View History

TARGET = qtr
NAME = "Transmission"
DESCRIPTION = "Transmission: a fast, easy, and free BitTorrent client"
VERSION = 1.60
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 -levent
LIBS += $${TRANSMISSION_TOP}/third-party/dht/libdht.a
2009-04-09 18:55:47 +00:00
LIBS += $${TRANSMISSION_TOP}/third-party/miniupnp/libminiupnp.a
LIBS += $${TRANSMISSION_TOP}/third-party/libnatpmp/libnatpmp.a
TRANSLATIONS += transmission_en.ts
2009-04-09 18:55:47 +00:00
FORMS += mainwin.ui
2009-04-09 18:55:47 +00:00
RESOURCES += application.qrc
SOURCES += about.cc app.cc details.cc file-tree.cc filters.cc hig.cc \
2009-05-08 18:52:06 +00:00
license.cc mainwin.cc make-dialog.cc options.cc prefs.cc \
prefs-dialog.cc qticonloader.cc relocate.cc session.cc \
session-dialog.cc squeezelabel.cc stats-dialog.cc torrent.cc \
torrent-delegate.cc torrent-delegate-min.cc torrent-filter.cc \
torrent-model.cc triconpushbutton.cc utils.cc watchdir.cc
HEADERS += $$replace(SOURCES, .cc, .h)
HEADERS += speed.h types.h
2009-04-09 18:55:47 +00:00