- Added buildconf.pri to hold the master-level build options.
[qtrapids] / src / engine / engine.pro
1 include (../../includes.pri)
2 include (../../buildconf.pri)
3
4 TEMPLATE = lib
5
6 CONFIG += dll
7
8
9 VERSION = 0.1
10
11 HEADERS += AlertWaiterThread.h \
12  QBittorrentSession.h \
13  QTorrentHandle.h
14
15 SOURCES += AlertWaiterThread.cpp \
16  QBittorrentSession.cpp \
17  QTorrentHandle.cpp
18
19 QT -= gui
20
21 TARGET = qtbittorrent
22
23 DESTDIR = ../../bin
24
25 LIBS += -ltorrent-rasterbar \
26   -lboost_filesystem-mt \
27   -lboost_date_time-mt \
28   -lboost_thread-mt
29
30 # Check build mode and print result in console
31 debug {
32   message( "DEBUG" )
33 } else {
34   message( "RELEASE" )
35 }