63dc4d237486845df725e6bf0f4560d5c06e7bbb
[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 TEMPLATE = app
14
15 TARGET = qtrapids
16
17 CONFIG += qtestlib
18
19 DESTDIR = ../../bin
20
21 INCLUDEPATH += ../engine
22
23 LIBS += -L../../bin \
24   -lqtbittorrent \
25   -L/home/vaatala/Projects/qtrapids/trunk/bin \
26   -L../engine
27
28 QMAKE_LFLAGS_DEBUG += -L.
29 TARGETDEPS += ../../bin/libqtbittorrent.so
30
31 # Check build mode and print to console
32 debug {
33   message( "DEBUG" )
34 } else {
35   message( "RELEASE" )
36 }
37