X-Git-Url: http://git.maemo.org/git/?p=qtrapids;a=blobdiff_plain;f=src%2Fgui%2Fgui.pro;h=668b387a32f0659489fcc46beb1cdbe699e2115a;hp=78ba94a87ac32af47d05b0b167e6a4a66fee3754;hb=f291a99270f6f9ac0f2bd89880a9c27a267a8716;hpb=033e50732cef6dd961ac23dcd6371c873114ebe9 diff --git a/src/gui/gui.pro b/src/gui/gui.pro index 78ba94a..668b387 100644 --- a/src/gui/gui.pro +++ b/src/gui/gui.pro @@ -1,15 +1,38 @@ +include (../../includes.pri) +include (../../buildconf.pri) + SOURCES += DownloadView.cpp \ MainWindow.cpp \ SeedView.cpp \ - main.cpp + main.cpp \ + PreferencesDialog.cpp HEADERS += DownloadView.h \ MainWindow.h \ -SeedView.h +SeedView.h \ + PreferencesDialog.h + TEMPLATE = app TARGET = qtrapids -CONFIG -= release +CONFIG += qtestlib + +DESTDIR = ../../bin + +INCLUDEPATH += ../engine + +LIBS += -L../../bin \ + -lqtbittorrent \ + -L/home/vaatala/Projects/qtrapids/trunk/bin \ + -L../engine + +QMAKE_LFLAGS_DEBUG += -L. +TARGETDEPS += ../../bin/libqtbittorrent.so -CONFIG += debug +# Check build mode and print to console +debug { + message( "DEBUG" ) +} else { + message( "RELEASE" ) +}