- License texts modified to GPLv2
[qtrapids] / src / gui / gui.pro
1 include (../../includes.pri)
2 include (../../buildconf.pri)
3
4 SOURCES += DownloadView.cpp \
5 MainWindow.cpp \
6 SeedView.cpp \
7  main.cpp \
8  PreferencesDialog.cpp
9 HEADERS += DownloadView.h \
10 MainWindow.h \
11 SeedView.h \
12  PreferencesDialog.h
13
14 TEMPLATE = app
15
16 TARGET = qtrapids
17
18 CONFIG += qtestlib
19
20 DESTDIR = ../../bin
21
22 INCLUDEPATH += ../engine \
23         ../plugins
24
25 LIBS += -L../../bin \
26   -lqtbittorrent \
27   -L/home/vaatala/Projects/qtrapids/trunk/bin \
28   -L../engine
29
30 QMAKE_LFLAGS_DEBUG += -L.
31 TARGETDEPS += ../../bin/libqtbittorrent.so
32
33 # Check build mode and print to console
34 debug {
35   message( "DEBUG" )
36 } else {
37   message( "RELEASE" )
38 }
39