- Added PluginInterface and SearchPlugin
[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
24 LIBS += -L../../bin \
25   -lqtbittorrent \
26   -L/home/vaatala/Projects/qtrapids/trunk/bin \
27   -L../engine
28
29 QMAKE_LFLAGS_DEBUG += -L.
30 TARGETDEPS += ../../bin/libqtbittorrent.so
31
32 # Check build mode and print to console
33 debug {
34   message( "DEBUG" )
35 } else {
36   message( "RELEASE" )
37 }
38